2020-04-18 07:01:35 +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>
|
|
|
|
|
|
|
|
<groupId>nl.SBDeveloper</groupId>
|
|
|
|
<artifactId>ThemeParkPlus</artifactId>
|
2023-10-12 18:36:09 +00:00
|
|
|
<version>3.2.1</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>ThemeParkPlus</name>
|
|
|
|
|
|
|
|
<description>Plus version of ThemePark!</description>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<url>https://sbdplugins.nl</url>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-03-31 17:01:47 +00:00
|
|
|
<version>3.11.0</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<configuration>
|
2021-07-02 09:12:02 +00:00
|
|
|
<release>11</release>
|
2020-04-18 07:01:35 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-10-02 10:15:00 +00:00
|
|
|
<version>3.5.1</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>de.tr7zw.changeme.nbtapi</pattern>
|
2020-08-11 07:01:53 +00:00
|
|
|
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.nbtapi</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.codemc.worldguardwrapper</pattern>
|
|
|
|
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.worldguardwrapper</shadedPattern>
|
2020-04-18 07:01:35 +00:00
|
|
|
</relocation>
|
2020-08-11 08:17:53 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.bstats</shadedPattern>
|
|
|
|
</relocation>
|
2020-11-21 12:06:26 +00:00
|
|
|
<relocation>
|
2022-01-17 18:27:57 +00:00
|
|
|
<pattern>fr.minuskube.inv</pattern>
|
|
|
|
<shadedPattern>nl.sbdeveloper.themeparkplus.libs.smartinvs</shadedPattern>
|
2020-11-21 12:06:26 +00:00
|
|
|
</relocation>
|
2020-04-18 07:01:35 +00:00
|
|
|
</relocations>
|
2022-09-02 18:23:35 +00:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/cryptomorin/xseries/XPotion*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XItemStack*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XEntity*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XEnchantment*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XBlock*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XMaterial*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XSound*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/XTag*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/SkullUtils*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/particles/*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/messages/*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/unused/*</exclude>
|
|
|
|
<exclude>com/cryptomorin/xseries/SkullCacheListener*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2020-04-18 07:01:35 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2022-09-02 18:23:35 +00:00
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
2020-04-18 07:01:35 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
2022-09-02 18:23:35 +00:00
|
|
|
<id>enginehub-maven</id>
|
2020-06-03 19:10:49 +00:00
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
2020-04-18 07:01:35 +00:00
|
|
|
</repository>
|
2022-09-02 18:23:35 +00:00
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
2023-10-12 18:36:09 +00:00
|
|
|
<repository>
|
|
|
|
<id>sbdevelopment-repo-releases</id>
|
|
|
|
<name>SBDevelopment Repository</name>
|
|
|
|
<url>https://repo.sbdevelopment.tech/releases</url>
|
|
|
|
</repository>
|
2020-04-18 07:01:35 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-10-12 18:36:09 +00:00
|
|
|
<version>1.20.2-R0.1-SNAPSHOT</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-12 18:36:09 +00:00
|
|
|
<groupId>nl.iobyte</groupId>
|
2020-04-18 07:01:35 +00:00
|
|
|
<artifactId>themepark</artifactId>
|
2023-10-12 18:36:09 +00:00
|
|
|
<version>3.1.3</version>
|
|
|
|
<scope>provided</scope>
|
2020-04-18 07:01:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-10-02 11:01:27 +00:00
|
|
|
<version>1.18.30</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.tr7zw</groupId>
|
|
|
|
<artifactId>item-nbt-api</artifactId>
|
2023-10-02 12:00:42 +00:00
|
|
|
<version>2.12.0</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2023-03-31 14:54:06 +00:00
|
|
|
<version>1.7.1</version>
|
2020-04-18 07:01:35 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-06-01 11:43:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2022-01-17 18:27:57 +00:00
|
|
|
<version>5.0.1</version>
|
2020-06-03 19:10:49 +00:00
|
|
|
</dependency>
|
2020-06-16 08:23:39 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2023-03-31 15:14:03 +00:00
|
|
|
<version>3.0.2</version>
|
2020-06-16 08:23:39 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-11-21 12:06:26 +00:00
|
|
|
<dependency>
|
2022-01-17 18:27:57 +00:00
|
|
|
<groupId>fr.minuskube.inv</groupId>
|
|
|
|
<artifactId>smart-invs</artifactId>
|
|
|
|
<version>1.2.7</version>
|
2020-11-21 12:06:26 +00:00
|
|
|
</dependency>
|
2022-09-02 18:23:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>club.minnced</groupId>
|
|
|
|
<artifactId>discord-webhooks</artifactId>
|
2023-08-23 08:37:23 +00:00
|
|
|
<version>0.8.4</version>
|
2022-09-02 18:23:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
|
|
<artifactId>XSeries</artifactId>
|
2023-10-02 11:01:30 +00:00
|
|
|
<version>9.6.0</version>
|
2022-09-02 18:23:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
2023-10-02 10:14:57 +00:00
|
|
|
<version>7.2.16</version>
|
2022-09-02 18:23:35 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
|
|
<version>7.0.5-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-04-18 07:01:35 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|