This repository was archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
116 lines (103 loc) · 3.78 KB
/
pom.xml
File metadata and controls
116 lines (103 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!--
This pom.xml formatting is designed by @FireController1847 (https://github.com/FireController1847)
More specifically from his project "javabase" (https://github.com/FireController1847/javabase)
-->
<modelVersion>4.0.0</modelVersion>
<!-- Project Information -->
<name>JG_API</name>
<description>Java Wrapper for the Guilded API.</description>
<groupId>dev.JGAPI</groupId>
<artifactId>JG_API</artifactId>
<version>${projectVersion}</version>
<packaging>jar</packaging>
<!-- Project Metadata -->
<url>https://github.com/JGAPI/JG_API</url>
<developers>
<developer>
<name>Nathaniel Moratto</name>
<email>nathaniel@moratto.dev</email>
<url>https://github.com/itznxthaniel</url>
</developer>
<developer>
<name>Jared Scarito</name>
<email>me@jaredscarito.com</email>
<url>https://github.com/JaredScar</url>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://opensource.org/licenses/GPL-3.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Project Properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<actualVersion>0.0.1-alpha.dev</actualVersion>
<fileVersion>INVALID</fileVersion>
<projectVersion>INVALID</projectVersion>
</properties>
<!-- Project Profiles -->
<profiles>
<!-- Snapshot Profile -->
<profile>
<id>snapshot</id>
<properties>
<!--suppress UnresolvedMavenProperty -->
<fileVersion>${projectVersion}-${git.commit.id.abbrev}</fileVersion>
<projectVersion>${actualVersion}-SNAPSHOT</projectVersion>
</properties>
</profile>
<!-- Release Profile -->
<profile>
<id>release</id>
<properties>
<fileVersion>${projectVersion}</fileVersion>
<projectVersion>${actualVersion}</projectVersion>
</properties>
</profile>
</profiles>
<!-- Distribution -->
<!-- Build -->
<build>
<finalName>JGAPI-${fileVersion}</finalName>
<!-- Plugins -->
<plugins>
<!-- Git Commit ID Plugin -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.0.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Dependencies -->
<dependencies>
<!-- BUILD: ORG Json -->
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>