2019-01-15 17:16:59 +00:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2020-06-16 16:30:29 +00:00
|
|
|
<groupId>nl.iobyte</groupId>
|
2019-01-15 17:16:59 +00:00
|
|
|
<artifactId>themepark</artifactId>
|
2021-06-06 12:16:41 +00:00
|
|
|
<version>2.3.3</version>
|
2019-01-15 17:16:59 +00:00
|
|
|
|
2019-03-04 14:29:21 +00:00
|
|
|
<repositories>
|
2020-04-18 19:46:53 +00:00
|
|
|
<repository>
|
|
|
|
<id>dynmap</id>
|
|
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
2021-06-06 12:16:41 +00:00
|
|
|
<repository>
|
|
|
|
<id>MG-Dev Jenkins CI Maven Repository</id>
|
|
|
|
<url>https://ci.mg-dev.eu/plugin/repository/everything</url>
|
|
|
|
</repository>
|
2019-03-04 14:29:21 +00:00
|
|
|
</repositories>
|
|
|
|
|
2019-01-15 17:16:59 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-03-04 14:29:21 +00:00
|
|
|
<dependency>
|
2020-04-18 19:46:53 +00:00
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
|
|
|
<version>2.0</version>
|
2019-03-04 14:29:21 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-06-16 16:30:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>nl.iobyte</groupId>
|
|
|
|
<artifactId>menuapi</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2021-06-06 12:16:41 +00:00
|
|
|
<version>3.4.5</version>
|
2020-06-16 16:30:29 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nl.iobyte</groupId>
|
|
|
|
<artifactId>workchain</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2021-06-06 12:16:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bergerkiller.bukkit</groupId>
|
|
|
|
<artifactId>TrainCarts</artifactId>
|
|
|
|
<version>1.16.5-v1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.bergerkiller.bukkit</groupId>
|
|
|
|
<artifactId>BKCommonLib</artifactId>
|
|
|
|
<version>1.16.5-v1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-01-15 17:16:59 +00:00
|
|
|
</dependencies>
|
2020-06-16 16:30:29 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<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>
|
2019-01-15 17:16:59 +00:00
|
|
|
</project>
|