2012-06-10 18:18:50 +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">
|
2013-05-17 06:27:12 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-05-22 18:35:20 +02:00
|
|
|
<groupId>com.wimbli.WorldBorder</groupId>
|
2013-05-17 06:27:12 +02:00
|
|
|
<artifactId>WorldBorder</artifactId>
|
2016-01-02 11:55:03 +01:00
|
|
|
<version>1.8.5</version>
|
2013-05-17 06:27:12 +02:00
|
|
|
<name>WorldBorder</name>
|
|
|
|
<url>https://github.com/Brettflan/WorldBorder</url>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/Brettflan/WorldBorder/issues</url>
|
|
|
|
</issueManagement>
|
2013-05-22 18:35:20 +02:00
|
|
|
|
2013-05-17 06:27:12 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2015-02-08 16:14:31 +01:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2013-05-17 06:27:12 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>dynmap-repo</id>
|
|
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2015-02-08 16:14:31 +01:00
|
|
|
<!--Spigot-API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2015-06-23 19:38:26 +02:00
|
|
|
<version>1.8.7-R0.1-SNAPSHOT</version>
|
2015-02-08 16:14:31 +01:00
|
|
|
</dependency>
|
|
|
|
<!--Bukkit API-->
|
2013-05-17 06:27:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2015-06-23 19:38:26 +02:00
|
|
|
<version>1.8.7-R0.1-SNAPSHOT</version>
|
2013-05-17 06:27:12 +02:00
|
|
|
</dependency>
|
2015-02-08 16:14:31 +01:00
|
|
|
<!--Dynmap API-->
|
2013-05-17 06:27:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
2015-06-23 19:38:26 +02:00
|
|
|
<version>2.0</version>
|
2013-05-17 06:27:12 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-06-10 18:18:50 +02:00
|
|
|
</project>
|