forked from GeyserExtensionists/GeyserUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
90 lines (81 loc) · 2.76 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
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.zimzaza4</groupId>
<artifactId>GeyserUtils</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- modules -->
<modules>
<module>common</module>
<module>geyser</module>
<module>spigot</module>
<module>velocity</module>
<module>bungee</module>
</modules>
<!-- properties -->
<properties>
<!-- project related -->
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<shade.plugin.version>3.6.0</shade.plugin.version>
<compiler.plugin.version>3.13.0</compiler.plugin.version>
<!-- dependencies -->
<jackson.version>2.18.2</jackson.version>
<velocity.version>3.4.0-SNAPSHOT</velocity.version>
<paper.version>1.12.2-R0.1-SNAPSHOT</paper.version>
<floodgate.version>2.2.0-SNAPSHOT</floodgate.version>
<geyser.version>2.6.0-SNAPSHOT</geyser.version>
<bungeecord.version>1.20-R0.3-SNAPSHOT</bungeecord.version>
</properties>
<!-- developers -->
<developers>
<!-- zimzaza4 -->
<developer>
<id>zimzaza4</id>
</developer>
<!-- willem.dev -->
<developer>
<id>willem.dev</id>
</developer>
<!-- kiwix -->
<developer>
<id>kiwix</id>
<name>Roch Blondiaux</name>
<email>[email protected]</email>
<timezone>UTC+1</timezone>
</developer>
</developers>
<!-- repositories -->
<repositories>
<!-- papermc -->
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<!-- opencollab -->
<repository>
<id>opencollab-snapshot</id>
<url>https://repo.opencollab.dev/main/</url>
</repository>
</repositories>
<!-- dependencies -->
<dependencies>
<!-- projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
<scope>provided</scope>
</dependency>
<!-- jetbrains/annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.1</version>
</dependency>
</dependencies>
</project>