187f02068e
Fixed for 1.12 removed CitizensAPI dependency added disabledelay added disablecooldown fixed drop-item
88 lines
2.7 KiB
XML
88 lines
2.7 KiB
XML
<!-- Blacksmith build file -->
|
|
|
|
<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>net.apunch</groupId>
|
|
<artifactId>blacksmith</artifactId>
|
|
<version>1.12-SNAPSHOT</version>
|
|
<name>Blacksmith</name>
|
|
<description>Blacksmith Character for the CitizensAPI</description>
|
|
|
|
<!-- Properties -->
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<bukkit.version>1.10.2-R0.1-SNAPSHOT</bukkit.version>
|
|
<citizensapi.version>2.0.20-SNAPSHOT</citizensapi.version>
|
|
<vault.version>1.5.6</vault.version>
|
|
<hyperconomy.version>0.975.7-SNAPSHOT</hyperconomy.version>
|
|
<build.number>Unknown</build.number>
|
|
</properties>
|
|
|
|
<!-- Repositories -->
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>citizens-repo</id>
|
|
<url>http://ci.citizensnpcs.co/job/Citizens2/lastSuccessfulBuild/maven-repository/repository/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>grokswell-repo</id>
|
|
<url>http://www.grokswell.com:8000/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<!-- Dependencies -->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>citizensapi</artifactId>
|
|
<version>2.0.22-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>${bukkit.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
<version>${vault.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>regalowl.hyperconomy</groupId>
|
|
<artifactId>hyperconomy</artifactId>
|
|
<version>${hyperconomy.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Build information -->
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.5.1</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|