mirror of
https://github.com/Maxlego08/zKoth.git
synced 2024-11-04 09:09:45 +01:00
121 lines
4.3 KiB
XML
121 lines
4.3 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>
|
|
</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>
|
|
</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>
|