2011-11-23 22:09:03 +01: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>org.dynmap</groupId>
|
|
|
|
<artifactId>Dynmap-Factions</artifactId>
|
2014-02-02 20:13:50 +01:00
|
|
|
<version>0.80</version>
|
2013-07-05 00:11:01 +02:00
|
|
|
<properties>
|
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<BUILD_NUMBER>Dev${timestamp}</BUILD_NUMBER>
|
|
|
|
</properties>
|
2011-11-23 22:09:03 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
<include>*.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*.yml</exclude>
|
|
|
|
<exclude>*.txt</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
2013-01-05 23:47:14 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-11-23 22:09:03 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-01-05 23:47:14 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<releases>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
</snapshots>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<releases>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
</snapshots>
|
|
|
|
<id>dynmap-repo</id>
|
|
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2011-11-23 22:09:03 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
2014-02-02 20:13:50 +01:00
|
|
|
<version>1.9</version>
|
2011-11-23 22:09:03 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2014-02-02 20:13:50 +01:00
|
|
|
<version>1.7.2-R0.2</version>
|
2011-11-23 22:09:03 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.massivecraft</groupId>
|
|
|
|
<artifactId>Factions</artifactId>
|
2014-02-02 20:13:50 +01:00
|
|
|
<version>2.3.0</version>
|
2011-11-23 22:09:03 +01:00
|
|
|
<scope>system</scope>
|
2014-02-02 20:13:50 +01:00
|
|
|
<systemPath>${project.basedir}/Factions-2.3.0.jar</systemPath>
|
2013-06-24 01:19:58 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.massivecraft</groupId>
|
|
|
|
<artifactId>mcore</artifactId>
|
2014-02-02 20:13:50 +01:00
|
|
|
<version>7.0.1</version>
|
2013-06-24 01:19:58 +02:00
|
|
|
<scope>system</scope>
|
2014-02-02 20:13:50 +01:00
|
|
|
<systemPath>${project.basedir}/mcore-7.0.1.jar</systemPath>
|
2011-11-23 22:09:03 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|