mirror of
https://github.com/Maxlego08/zKoth.git
synced 2024-11-04 09:09:45 +01:00
203 lines
6.9 KiB
XML
203 lines
6.9 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>fr.maxlego08.koth</groupId>
|
|
<artifactId>zKoth</artifactId>
|
|
<version>3.0.0</version>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>com/cryptomorin/xseries/messages/*</exclude>
|
|
<exclude>com/cryptomorin/xseries/particles/*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
|
|
<exclude>com/cryptomorin/xseries/NMSExtras*</exclude>
|
|
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
|
<exclude>com/cryptomorin/xseries/SkullCacheListener*</exclude>
|
|
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XTag*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XPotion*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XMaterial*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XItemStack*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XBlock*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XEntity*</exclude>
|
|
<exclude>com/cryptomorin/xseries/XEnchantment*</exclude>
|
|
<exclude>com/cryptomorin/xseries/SkullUtils*</exclude>
|
|
<exclude>com/cryptomorin/xseries/ReflectionUtils*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>fr.mrmicky.fastboard</pattern>
|
|
<shadedPattern>fr.maxlego08.koth.fastboard</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
|
<shadedPattern>fr.maxlego08.koth.xseries</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>minecraft-repo</id>
|
|
<url>https://libraries.minecraft.net/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>krypton</id>
|
|
<url>https://repo.kryptonmc.org/releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>william278.net</id>
|
|
<url>https://repo.william278.net/releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bg-repo</id>
|
|
<url>https://repo.bg-software.com/repository/api/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.Maxlego08</groupId>
|
|
<artifactId>zTranslator</artifactId>
|
|
<version>1.0.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.folia</groupId>
|
|
<artifactId>folia-api</artifactId>
|
|
<version>1.19.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mojang</groupId>
|
|
<artifactId>authlib</artifactId>
|
|
<version>3.11.50</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.booksaw</groupId>
|
|
<artifactId>BetterTeams</artifactId>
|
|
<version>4.8.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.MrUniverse44</groupId>
|
|
<artifactId>ScaredClansAPI</artifactId>
|
|
<version>0.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.neznamy</groupId>
|
|
<artifactId>tab-api</artifactId>
|
|
<version>4.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.william278</groupId>
|
|
<artifactId>husktowns</artifactId>
|
|
<version>2.6.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.angeschossen</groupId>
|
|
<artifactId>LandsAPI</artifactId>
|
|
<version>6.44.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.Maxlego08</groupId>
|
|
<artifactId>zSchedulers</artifactId>
|
|
<version>1.0.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bgsoftware</groupId>
|
|
<artifactId>SuperiorSkyblockAPI</artifactId>
|
|
<version>2022.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ShieldCommunity</groupId>
|
|
<artifactId>SternalBoard</artifactId>
|
|
<version>2.2.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/SternalBoard-2.2.8-all.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>be.maximvdw.featherboard</groupId>
|
|
<artifactId>FeatherBoard</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/FeatherBoard.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.puharesource.mc.titlemanager</groupId>
|
|
<artifactId>TitleManager</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/TitleManager-2.3.6.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.decentsoftware-eu</groupId>
|
|
<artifactId>decentholograms</artifactId>
|
|
<version>2.8.6</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/DecentHolograms-2.8.6.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|