-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpom.xml
More file actions
54 lines (49 loc) · 1.92 KB
/
pom.xml
File metadata and controls
54 lines (49 loc) · 1.92 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
<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">
<!-- Update Townships Version Number Here! -->
<properties>
<townships.version>0.0.1-SNAPSHOT</townships.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.redcastlemedia</groupId>
<artifactId>Townships-Parent</artifactId>
<version>STATIC-PARENT</version>
<name>Townships-Parent</name>
<packaging>pom</packaging>
<modules>
<module>modules/Townships-Plugin</module>
<module>modules/Townships-Effects</module>
</modules>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-API</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.4.1</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>fr.neatmonster.nocheatplus</groupId>
<artifactId>NoCheatPlus</artifactId>
<version>3.12.0-BETA2</version>
<scope>system</scope>
<optional>true</optional>
<systemPath>D:/champions test server/plugins/NoCheatPlus.jar</systemPath>
</dependency>
</dependencies>
</project>