You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
897 B
XML
25 lines
897 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.zivilon</groupId>
|
|
<artifactId>Abilities</artifactId>
|
|
<version>1.1</version>
|
|
<dependencies>
|
|
<!--This adds the Spigot API artifact to the build -->
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.flinbein</groupId>
|
|
<artifactId>PowerNBT</artifactId>
|
|
<version>0.8.9.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|