86 lines
2.4 KiB
XML
86 lines
2.4 KiB
XML
<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>nl.Steffion</groupId>
|
|
<artifactId>BlockHunt</artifactId>
|
|
<version>0.2.1-b${env.BUILD_NUMBER}</version>
|
|
<name>BlockHunt</name>
|
|
|
|
<repositories>
|
|
<!-- Repository for Bukkit -->
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>bukkit-maven</id>
|
|
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- Other repositories -->
|
|
<repository>
|
|
<id>maven-central</id>
|
|
<url>http://repo1.maven.org/maven2/</url>
|
|
</repository>
|
|
|
|
<!-- Addstar repo -->
|
|
<repository>
|
|
<id>addstar-repo</id>
|
|
<url>http://maven.addstar.com.au/artifactory/ext-release-local</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Bukkit -->
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.7.9-R0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- CraftBukkit Dependency for experimental features
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<version>1.7.9-R0.1-SNAPSHOT</version>
|
|
</dependency>-->
|
|
|
|
<!-- LibsDiguises is required for hiding -->
|
|
<dependency>
|
|
<groupId>me.libraryaddict</groupId>
|
|
<artifactId>LibsDisguises</artifactId>
|
|
<version>7.6.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src</directory>
|
|
<includes>
|
|
<include>plugin.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<encoding>ISO-8859-1</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|