2014-04-04 20:53:42 +02:00
|
|
|
<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.minetime</groupId>
|
|
|
|
<artifactId>Factions</artifactId>
|
|
|
|
<version>1.6.9.5-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Factions</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
|
|
<finalName>Factions</finalName>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
2014-04-04 21:35:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.daboross.vault</groupId>
|
|
|
|
<artifactId>vault-api</artifactId>
|
|
|
|
<version>1.2.27</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft</groupId>
|
|
|
|
<artifactId>lwc</artifactId>
|
|
|
|
<version>4.4.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2014-04-04 20:53:42 +02:00
|
|
|
</dependencies>
|
2014-04-04 21:35:35 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<repositories>
|
2014-04-04 21:35:35 +02:00
|
|
|
<repository>
|
|
|
|
<id>repo-daboross-net</id>
|
|
|
|
<url>http://repo.daboross.net/</url>
|
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2014-04-04 21:35:35 +02:00
|
|
|
<repository>
|
|
|
|
<id>mcstats.releases</id>
|
|
|
|
<name>mcstats.org releases</name>
|
|
|
|
<url>http://repo.mcstats.org/content/repositories/</url>
|
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repositories>
|
|
|
|
</project>
|