UltimateKits/pom.xml

169 lines
6.3 KiB
XML
Raw Permalink Normal View History

<?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>
2024-04-01 01:23:03 +02:00
<version>3.0.2</version>
<name>UltimateKits</name>
<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>
<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>
</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>
2018-05-06 01:32:21 +02:00
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
2018-11-15 12:10:28 +01:00
</configuration>
</plugin>
<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>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<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>
<relocations>
<relocation>
2023-07-27 03:28:26 +02:00
<pattern>com.craftaro.core</pattern>
<shadedPattern>com.craftaro.ultimatestacker.core</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
</excludes>
</filter>
2023-07-27 03:28:26 +02:00
<filter>
<artifact>com.craftaro:CraftaroCore</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>**/nms/v*/**</include>
</includes>
<excludes>
<exclude>**/third_party/org/apache/**</exclude>
<exclude>**/third_party/net/kyori/**</exclude>
<exclude>**/third_party/com/zaxxer/**</exclude>
<exclude>**/third_party/org/jooq/**</exclude>
<exclude>**/third_party/org/mariadb/**</exclude>
<exclude>**/third_party/com/h2database/**</exclude>
<exclude>**/third_party/org/h2/**</exclude>
<exclude>**/third_party/com/cryptomorin/**</exclude>
<exclude>**/third_party/org/reactivestreams/**</exclude>
</excludes>
2023-07-27 03:28:26 +02:00
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2018-05-06 01:32:21 +02:00
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2018-05-06 01:32:21 +02:00
</build>
2018-05-06 01:32:21 +02:00
<repositories>
2020-03-16 18:21:21 +01:00
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-03-16 18:21:21 +01:00
</repository>
2019-07-21 04:50:35 +02:00
<repository>
2023-07-27 03:28:26 +02:00
<id>public</id>
2024-03-11 20:02:49 +01:00
<url>https://repo.craftaro.com/repository/public/</url>
2019-07-21 04:50:35 +02:00
</repository>
2018-05-06 01:32:21 +02:00
</repositories>
2018-05-06 01:32:21 +02:00
<dependencies>
<dependency>
2018-08-29 01:07:49 +02:00
<groupId>org.spigotmc</groupId>
<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>
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>
2018-10-18 23:43:52 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.5.1</version>
<scope>provided</scope>
2018-05-07 18:49:07 +02:00
</dependency>
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>
<scope>provided</scope>
2018-10-18 23:53:55 +02:00
</dependency>
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>
<scope>provided</scope>
2018-10-18 23:53:55 +02:00
</dependency>
<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>
</dependency>
2018-05-06 01:32:21 +02:00
</dependencies>
2018-07-19 23:43:39 +02:00
</project>