-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
100 lines (90 loc) · 3.35 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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.seekers</groupId>
<artifactId>seekers</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<modules>
<module>seekers-core</module>
<module>seekers-server</module>
<module>seekers-client</module>
<module>seekers-graphics</module>
<module>seekers-tests</module>
</modules>
<name>Seekers</name>
<description>Java implementation of the seekers game</description>
<inceptionYear>2022</inceptionYear>
<scm>
<url>scm:git:https://github.com/seekers-dev/seekers-java</url>
<connection>scm:git:https://github.com/seekers-dev/seekers-java.git</connection>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/seekers-dev/seekers-java/issues</url>
</issueManagement>
<licenses>
<license>
<name>GNU General Public License</name>
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Karl Zschiebsch</name>
<organization>Seekers Dev</organization>
<organizationUrl>https://github.com/seekers-dev</organizationUrl>
<email>[email protected]</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Jonas Endter</name>
<organization>Seekers Dev</organization>
<organizationUrl>https://github.com/seekers-dev</organizationUrl>
</contributor>
<contributor>
<name>Martin Wille</name>
<organization>Seekers Dev</organization>
<organizationUrl>https://github.com/seekers-dev</organizationUrl>
</contributor>
</contributors>
<properties>
<project.javaVersion>11</project.javaVersion>
<maven.compiler.source>${project.javaVersion}</maven.compiler.source>
<maven.compiler.target>${project.javaVersion}</maven.compiler.target>
<maven.compiler.release>${project.javaVersion}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Annotations -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apiguardian</groupId>
<artifactId>apiguardian-api</artifactId>
<version>1.1.2</version>
</dependency>
<!-- Ini files -->
<dependency>
<groupId>org.ini4j</groupId>
<artifactId>ini4j</artifactId>
<version>0.5.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Wrapper for Apache Maven -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-wrapper-plugin</artifactId>
<version>3.3.2</version>
</plugin>
</plugins>
</build>
</project>