mirror of
https://github.com/songoda/UltimateKits.git
synced 2024-11-08 03:29:46 +01:00
198 lines
7.1 KiB
XML
198 lines
7.1 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>UltimateKits</artifactId>
|
|
<version>3.0.2</version>
|
|
|
|
<name>UltimateKits</name>
|
|
<description>Creating and displaying your server's kits has never been easier</description>
|
|
<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>
|
|
<url>https://github.com/craftaro/UltimateKits</url>
|
|
<connection>scm:git:git:github.com/craftaro/UltimateKits.git</connection>
|
|
</scm>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
|
|
<release>${java.release}</release>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
|
|
<configuration>
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.craftaro.core</pattern>
|
|
<shadedPattern>com.craftaro.ultimatekits.core</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
<exclude>META-INF/**</exclude>
|
|
<exclude>LICENSE</exclude>
|
|
<exclude>LICENSE.**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
|
|
<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>
|
|
</filter>
|
|
</filters>
|
|
</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/groups/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>spigotmc-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>essentials-snapshots</id>
|
|
<url>https://repo.essentialsx.net/snapshots/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>essentials-releases</id>
|
|
<url>https://repo.essentialsx.net/releases/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>paper-repo</id>
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>public</id>
|
|
<url>https://repo.craftaro.com/repository/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>CraftaroCore</artifactId>
|
|
<version>3.0.6-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.5.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>net.essentialsx</groupId>
|
|
<artifactId>EssentialsX</artifactId>
|
|
<version>2.19.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Required by Essentials -->
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>3.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>bammerbom</groupId>
|
|
<artifactId>UltimateCore</artifactId>
|
|
<version>2.1.26</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.Zrips</groupId>
|
|
<artifactId>CMI-API</artifactId>
|
|
<version>7.6.2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|