-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
33 lines (31 loc) · 1011 Bytes
/
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
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.techcable</groupId>
<artifactId>parent</artifactId>
<version>1.0.9</version>
</parent>
<properties>
<java.version>1.8</java.version>
<testificate.version>1.8-1.0.0-alpha1-SNAPSHOT</testificate.version>
<bukkit.version>1.8-R0.1-SNAPSHOT</bukkit.version>
</properties>
<groupId>net.testificate</groupId>
<artifactId>spigot-mcp</artifactId>
<version>${testificate.version}</version>
<name>Spigot-MCP</name>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>${bukkit.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>techcable-repo</id>
<url>http://repo.techcable.net/content/groups/public/</url>
</repository>
</repositories>
</project>