112 lines
3.5 KiB
XML
112 lines
3.5 KiB
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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.craftinc</groupId>
|
|
<artifactId>CraftIncGates-Dynmap</artifactId>
|
|
<name>Craft Inc. Gates Dynmap</name>
|
|
<url>FIX-ME</url>
|
|
<packaging>jar</packaging>
|
|
<version>0.0.1</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<!-- License -->
|
|
<licenses>
|
|
|
|
<license>
|
|
<name>GNU Lesser General Public License Version 3</name>
|
|
<url>https://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<build>
|
|
<finalName>${project.name} ${project.version}</finalName>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>Run Test Bukkit Server</id>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>${basedir}/scripts/test-deployment.sh</executable>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.7.2-R0.2-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dynmap</groupId>
|
|
<artifactId>dynmap-api</artifactId>
|
|
<version>1.9</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.craftinc</groupId>
|
|
<artifactId>CraftIncGates</artifactId>
|
|
<version>2.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/Craft Inc. Gates 2.3.0.jar</systemPath>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>dynmap-repo</id>
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|