2012-09-22 16:41:45 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-09-30 14:12:41 +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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>de.craftinc</groupId>
|
|
|
|
<artifactId>CraftincBorderProtection</artifactId>
|
2016-07-26 20:01:57 +02:00
|
|
|
<name>CraftInc-BorderProtection</name>
|
2012-09-30 14:12:41 +02:00
|
|
|
<packaging>jar</packaging>
|
2016-07-26 20:01:57 +02:00
|
|
|
<version>2.0</version>
|
2012-09-30 14:12:41 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2013-02-16 17:59:05 +01:00
|
|
|
<build>
|
2016-07-26 20:01:57 +02:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
2013-02-16 17:59:05 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2013-02-24 10:44:35 +01:00
|
|
|
<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>
|
2013-03-08 14:09:52 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>Run Test Bukkit Server</id>
|
2013-12-04 13:51:07 +01:00
|
|
|
<phase>install</phase>
|
2013-03-08 14:09:52 +01:00
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<executable>${basedir}/scripts/test-deployment.sh</executable>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-02-24 10:44:35 +01:00
|
|
|
</plugins>
|
2013-02-16 17:59:05 +01:00
|
|
|
</build>
|
|
|
|
|
2016-07-26 20:01:57 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2012-09-30 14:12:41 +02:00
|
|
|
<dependencies>
|
2016-07-26 20:01:57 +02:00
|
|
|
<!--Spigot API-->
|
2012-09-30 14:12:41 +02:00
|
|
|
<dependency>
|
2016-07-26 20:01:57 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2013-03-08 14:09:52 +01:00
|
|
|
</dependency>
|
2016-07-26 20:01:57 +02:00
|
|
|
<!--Bukkit API-->
|
2013-03-08 14:09:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
2016-07-26 20:01:57 +02:00
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2012-09-30 14:12:41 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-09-22 16:41:45 +02:00
|
|
|
</project>
|