-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
67 lines (65 loc) · 2.26 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
<?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>io.siggi</groupId>
<artifactId>CubeCore-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>io.siggi</groupId>
<artifactId>NBTTool</artifactId>
<version>1.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.geysermc.floodgate</groupId>
<artifactId>api</artifactId>
<version>2.2.2-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<modules>
<module>CubeCore</module>
<module>CubeCore-base</module>
<module>CubeCore-bukkit</module>
<module>CubeCore-bungee</module>
<module>nms-base</module>
<module>nms-8R1</module>
<module>nms-8R2</module>
<module>nms-8R3</module>
<module>nms-9R1</module>
<module>nms-9R2</module>
<module>nms-10R1</module>
<module>nms-11R1</module>
<module>nms-12R1</module>
<module>nms-13R1</module>
<module>nms-13R2</module>
<module>nms-14R1</module>
<module>nms-15R1</module>
<module>nms-16R1</module>
<module>nms-16R2</module>
<module>nms-16R3</module>
<module>nms-17R1</module>
<module>nms-18R1</module>
<module>nms-18R2</module>
<module>nms-19R1</module>
<module>nms-19R2</module>
<module>nms-19R3</module>
<module>nms-20R1</module>
<module>nms-20R2</module>
<module>nms-20R3</module>
<module>nms-20R4</module>
<module>nms-21R1</module>
</modules>
</project>