-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
226 lines (226 loc) · 7.22 KB
/
pom.xml
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>doa</groupId>
<artifactId>DoaEngine</artifactId>
<packaging>jar</packaging>
<version>3.0</version>
<name>DoaEngine</name>
<description>A simple 2D game development framework for Java Developers.</description>
<issueManagement>
<url>https://github.com/aeris170/DoaEngine/issues</url>
</issueManagement>
<developers>
<developer>
<id>aeris170</id>
<name>Doğa Oruç</name>
<email>aeris170@gmail.com</email>
<url>https://aeris170.github.io</url>
</developer>
</developers>
<licenses>
<license>
<name>GNU AGPLv3</name>
<url>https://choosealicense.com/licenses/agpl-3.0/</url>
</license>
</licenses>
<properties>
<java.version>17</java.version>
<compiler-plugin.version>3.10.1</compiler-plugin.version>
<source-plugin.version>3.2.1</source-plugin.version>
<javadoc-plugin.version>3.4.0</javadoc-plugin.version>
<shade-plugin.version>3.3.0</shade-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<lombok.version>1.18.28</lombok.version>
<validation.version>2.0.1.Final</validation.version>
<guava.version>32.0.1-jre</guava.version>
<javatuples.version>1.2</javatuples.version>
<jbox2d.version>2.2.1.1</jbox2d.version>
<steamworks4j.version>1.9.0</steamworks4j.version>
<steamworks4j-server.version>1.9.0</steamworks4j-server.version>
<waifupnp.version>1.0</waifupnp.version>
<discord.version>0.5.5</discord.version>
<ffsampledsp.version>0.9.50</ffsampledsp.version>
<jhardware.version>0.8.6</jhardware.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
<configuration>
<compilerArgs>
<!-- \-\-enable-preview -->
</compilerArgs>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.version}</release>
<encoding>UTF-8</encoding>
<excludes>
<exclude>doa/main/test/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source-plugin.version}</version>
<configuration>
<excludes>
<exclude>doa/main/**</exclude>
<exclude>TOFFEE.otf</exclude>
<exclude>1.gif</exclude>
<exclude>2.gif</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc-plugin.version}</version>
<configuration>
<release>${java.version}</release>
<doclet>nl.talsmasoftware.umldoclet.UMLDoclet</doclet>
<docletArtifact>
<groupId>nl.talsmasoftware</groupId>
<artifactId>umldoclet</artifactId>
<version>2.0.18</version>
</docletArtifact>
<windowtitle>${project.name} ${project.version} API Documentation</windowtitle>
<doctitle>${project.name} ${project.version} API Documentation</doctitle>
<overview>${basedir}/overview.html</overview>
<stylesheetfile>${basedir}/stylesheet.css</stylesheetfile>
<show>protected</show>
<excludePackageNames>doa.main.test</excludePackageNames>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${shade-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<organization>
<url>aeris170.github.io</url>
</organization>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
<dependencies>
<!-- LOMBOK -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.javatuples/javatuples -->
<dependency>
<groupId>org.javatuples</groupId>
<artifactId>javatuples</artifactId>
<version>${javatuples.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jbox2d/jbox2d -->
<dependency>
<groupId>org.jbox2d</groupId>
<artifactId>jbox2d</artifactId>
<version>${jbox2d.version}</version>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jbox2d/jbox2d-library -->
<dependency>
<groupId>org.jbox2d</groupId>
<artifactId>jbox2d-library</artifactId>
<version>${jbox2d.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.code-disaster.steamworks4j/steamworks4j -->
<dependency>
<groupId>com.code-disaster.steamworks4j</groupId>
<artifactId>steamworks4j</artifactId>
<version>${steamworks4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.code-disaster.steamworks4j/steamworks4j -->
<dependency>
<groupId>com.code-disaster.steamworks4j</groupId>
<artifactId>steamworks4j-server</artifactId>
<version>${steamworks4j-server.version}</version>
</dependency>
<!-- https://github.com/geo-gs/WaifUPnP/ -->
<dependency>
<groupId>com.simtechdata</groupId>
<artifactId>WaifUPnP</artifactId>
<version>${waifupnp.version}</version>
</dependency>
<!-- https://github.com/JnCrMx/discord-game-sdk4j -->
<dependency>
<groupId>com.github.JnCrMx</groupId>
<artifactId>discord-game-sdk4j</artifactId>
<version>${discord.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.tagtraum/ffsampledsp-complete -->
<dependency>
<groupId>com.tagtraum</groupId>
<artifactId>ffsampledsp-complete</artifactId>
<version>${ffsampledsp.version}</version>
<exclusions>
<exclusion>
<groupId>com.tagtraum</groupId>
<artifactId>ffmpeg</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://github.com/profesorfalken/jHardware -->
<dependency>
<groupId>org.jhardware</groupId>
<artifactId>jHardware</artifactId>
<version>${jhardware.version}</version>
</dependency>
</dependencies>
</project>