-
Notifications
You must be signed in to change notification settings - Fork 45
/
pom.xml
executable file
·104 lines (98 loc) · 3.49 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.trc202</groupId>
<artifactId>combattag</artifactId>
<version>6.3.2</version>
<name>CombatTag</name>
<properties>
<java.version>1.6</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>techcable-repo</id> <!-- Houses war, crackshot, and craftbukkit -->
<url>http://repo.techcable.net/content/groups/public/</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
<repository>
<id>pvparena-repo</id>
<url>http://www.mc-praxis.com:8080/plugin/repository/everything/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.8.3-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Compatibility -->
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>6.0.0-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
<version>6.0.0-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.shampaggon</groupId>
<artifactId>crackshot</artifactId>
<version>0.97.17</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.tommytony</groupId>
<artifactId>war</artifactId>
<version>1.8</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>net.slipcor</groupId>
<artifactId>pvparena</artifactId>
<version>1.3-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<finalName>CombatTag</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>techcable-repo</id>
<url>http://repo.techcable.net/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>techcable-repo</id>
<url>http://repo.techcable.net/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>