2022-01-02 23:21:16 +01: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>
|
|
|
|
|
2023-07-27 03:28:26 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
2018-05-06 01:32:21 +02:00
|
|
|
<artifactId>UltimateKits</artifactId>
|
2023-08-25 14:49:47 +02:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
|
|
|
<name>UltimateKits</name>
|
2023-08-25 14:39:40 +02:00
|
|
|
<description>Creating and displaying your server's kits has never been easier</description>
|
2023-07-27 03:28:26 +02:00
|
|
|
<url>https://craftaro.com/marketplace/product/ultimatekits.14</url>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<java.release>8</java.release>
|
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2023-07-27 03:28:26 +02:00
|
|
|
<url>https://github.com/craftaro/UltimateKits</url>
|
|
|
|
<connection>scm:git:git:github.com/craftaro/UltimateKits.git</connection>
|
2022-01-02 23:21:16 +01:00
|
|
|
</scm>
|
|
|
|
|
2018-05-06 01:32:21 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-08-25 12:44:53 +02:00
|
|
|
<version>3.11.0</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-05-06 01:32:21 +02:00
|
|
|
<configuration>
|
2022-01-02 23:21:16 +01:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
|
|
|
<release>${java.release}</release>
|
2018-11-15 12:10:28 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-08-25 12:44:53 +02:00
|
|
|
<version>3.5.0</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<configuration>
|
2022-01-02 23:21:16 +01:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
|
2023-07-27 03:28:26 +02:00
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
2019-10-03 20:38:39 +02:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2023-07-27 03:28:26 +02:00
|
|
|
<pattern>com.craftaro.core</pattern>
|
|
|
|
<shadedPattern>com.craftaro.ultimatestacker.core</shadedPattern>
|
2022-01-02 23:21:16 +01:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-04-28 00:24:16 +02:00
|
|
|
<excludes>
|
2022-01-02 23:21:16 +01:00
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
<exclude>LICENSE</exclude>
|
|
|
|
<exclude>LICENSE.**</exclude>
|
2019-04-28 00:24:16 +02:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
2023-07-27 03:28:26 +02:00
|
|
|
|
|
|
|
<filter>
|
|
|
|
<artifact>com.craftaro:CraftaroCore</artifact>
|
|
|
|
<excludeDefaults>false</excludeDefaults>
|
|
|
|
<includes>
|
|
|
|
<include>**/nms/v*/**</include>
|
|
|
|
<include>**/core/third_party/**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
2019-04-28 00:24:16 +02:00
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-05-06 01:32:21 +02:00
|
|
|
</plugins>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-05-06 01:32:21 +02:00
|
|
|
</build>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-05-06 01:32:21 +02:00
|
|
|
<repositories>
|
2020-03-16 18:21:21 +01:00
|
|
|
<repository>
|
2022-01-02 23:21:16 +01:00
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2020-03-16 18:21:21 +01:00
|
|
|
</repository>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-07-21 04:50:35 +02:00
|
|
|
<repository>
|
2023-07-27 03:28:26 +02:00
|
|
|
<id>public</id>
|
2022-01-02 23:21:16 +01:00
|
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
2019-07-21 04:50:35 +02:00
|
|
|
</repository>
|
2018-05-06 01:32:21 +02:00
|
|
|
</repositories>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-05-06 01:32:21 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-08-29 01:07:49 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-12-11 15:25:24 +01:00
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-07-27 03:28:26 +02:00
|
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
2019-09-16 17:08:00 +02:00
|
|
|
<scope>provided</scope>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependency>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-05-06 01:32:21 +02:00
|
|
|
<dependency>
|
2023-07-27 03:28:26 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>CraftaroCore</artifactId>
|
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2019-09-16 17:08:00 +02:00
|
|
|
<scope>compile</scope>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependency>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-10-18 23:43:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.5.1</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
<scope>provided</scope>
|
2018-05-07 18:49:07 +02:00
|
|
|
</dependency>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-10-18 23:53:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.earth2me</groupId>
|
|
|
|
<artifactId>essentials</artifactId>
|
2019-08-20 00:28:20 +02:00
|
|
|
<version>2.17.1</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
<scope>provided</scope>
|
2018-10-18 23:53:55 +02:00
|
|
|
</dependency>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2018-10-18 23:53:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>bammerbom</groupId>
|
2020-03-22 08:32:56 +01:00
|
|
|
<artifactId>UltimateCore</artifactId>
|
|
|
|
<version>2.1.26</version>
|
2022-01-02 23:21:16 +01:00
|
|
|
<scope>provided</scope>
|
2018-10-18 23:53:55 +02:00
|
|
|
</dependency>
|
2022-01-02 23:21:16 +01:00
|
|
|
|
2019-08-06 20:48:28 +02:00
|
|
|
<dependency>
|
2021-01-15 22:37:30 +01:00
|
|
|
<groupId>com.github.Zrips</groupId>
|
|
|
|
<artifactId>CMI-API</artifactId>
|
|
|
|
<version>7.6.2.0</version>
|
|
|
|
<scope>provided</scope>
|
2019-08-06 20:48:28 +02:00
|
|
|
</dependency>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependencies>
|
2018-07-19 23:43:39 +02:00
|
|
|
</project>
|