96 lines
2.9 KiB
XML
96 lines
2.9 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>nl.iobyte</groupId>
|
||
|
<artifactId>themepark</artifactId>
|
||
|
<version>2.0</version>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<relocations>
|
||
|
<relocation>
|
||
|
<pattern>de.tr7zw.changeme.nbtapi</pattern>
|
||
|
<shadedPattern>de.tr7zw.nbtapi</shadedPattern>
|
||
|
</relocation>
|
||
|
</relocations>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>placeholderapi</id>
|
||
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>dynmap</id>
|
||
|
<url>http://repo.mikeprimm.com/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>ebean</artifactId>
|
||
|
<groupId>org.avaje</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>bungeecord-chat</artifactId>
|
||
|
<groupId>net.md-5</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.dynmap</groupId>
|
||
|
<artifactId>dynmap-api</artifactId>
|
||
|
<version>2.0</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>bukkit</artifactId>
|
||
|
<groupId>org.bukkit</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<properties>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
</properties>
|
||
|
</project>
|