2019-12-28 04:37:45 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2021-07-22 16:58:08 +02:00
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2023-07-26 21:31:23 +02:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2021-07-22 16:58:08 +02:00
<modelVersion > 4.0.0</modelVersion>
2023-08-15 21:54:37 +02:00
<groupId > com.craftaro</groupId>
<artifactId > FabledSkyBlock</artifactId>
2024-04-06 21:13:57 +02:00
<version > 3.0.6</version>
2023-07-26 21:31:23 +02:00
<name > FabledSkyBlock</name>
<description > Bring your server's SkyBlock experience to the next level with the ability to fine-tune island settings, create custom islands, view leaderboards, and much more</description>
<url > https://craftaro.com/marketplace/product/17</url>
2021-07-22 16:58:08 +02:00
<properties >
2023-07-26 21:31:23 +02:00
<maven.compiler.release > 8</maven.compiler.release>
<maven.compiler.target > 1.8</maven.compiler.target>
<maven.compiler.source > 1.8</maven.compiler.source>
2020-06-19 09:03:19 +02:00
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
2021-07-22 16:58:08 +02:00
</properties>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
2024-03-01 12:26:35 +01:00
<version > 3.5.2</version>
2021-07-22 16:58:08 +02:00
<executions >
<execution >
<phase > package</phase>
<goals >
<goal > shade</goal>
</goals>
<configuration >
2023-07-26 21:31:23 +02:00
<finalName > ${project.name}-${project.version}</finalName>
2021-07-22 16:58:08 +02:00
<shadedArtifactAttached > false</shadedArtifactAttached>
2023-07-26 21:31:23 +02:00
<useDependencyReducedPomInJar > true</useDependencyReducedPomInJar>
2021-07-22 16:58:08 +02:00
<minimizeJar > true</minimizeJar>
<relocations >
<relocation >
2023-08-15 18:52:43 +02:00
<pattern > com.craftaro.core</pattern>
<shadedPattern > com.craftaro.skyblock.core</shadedPattern>
2021-07-22 16:58:08 +02:00
</relocation>
<relocation >
<pattern > com.eatthepath.uuid</pattern>
2023-08-15 18:52:43 +02:00
<shadedPattern > com.craftaro.skyblock.third_party.com.eatthepath.uuid</shadedPattern>
2021-07-22 16:58:08 +02:00
</relocation>
</relocations>
2023-07-26 21:31:23 +02:00
<filters >
<filter >
<artifact > *:*</artifact>
<excludes >
<exclude > META-INF/**</exclude>
<exclude > LICENSE</exclude>
<exclude > LICENSE.**</exclude>
</excludes>
</filter>
2023-08-15 18:52:43 +02:00
<filter >
<artifact > com.craftaro:CraftaroCore</artifact>
<excludeDefaults > false</excludeDefaults>
<includes >
<include > **/nms/v*/**</include>
</includes>
2024-01-13 16:33:16 +01:00
<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>
2024-01-25 20:19:07 +01:00
<exclude > **/third_party/io/papermc/lib/**</exclude>
2024-01-13 16:33:16 +01:00
</excludes>
2023-08-15 18:52:43 +02:00
</filter>
2023-07-26 21:31:23 +02:00
</filters>
2021-07-22 16:58:08 +02:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
2023-07-26 21:31:23 +02:00
<resources >
<resource >
<directory > src/main/resources</directory>
<filtering > true</filtering>
</resource>
</resources>
2021-07-22 16:58:08 +02:00
</build>
<repositories >
<repository >
2023-07-26 21:31:23 +02:00
<id > craftaro-minecraft-plugins</id>
<url > https://repo.craftaro.com/repository/minecraft-plugins/</url>
2021-07-22 16:58:08 +02:00
</repository>
<repository >
2023-07-26 21:31:23 +02:00
<id > SpigotMC</id>
<url > https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2021-07-22 16:58:08 +02:00
</repository>
<repository >
2023-07-26 21:31:23 +02:00
<id > papermc</id>
<url > https://repo.papermc.io/repository/maven-public/</url>
2021-07-22 16:58:08 +02:00
</repository>
<repository >
<id > placeholderapi</id>
<url > https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<repository >
2023-07-26 21:31:23 +02:00
<id > enginehub-maven</id>
<url > https://maven.enginehub.org/repo/</url>
2021-07-22 16:58:08 +02:00
</repository>
<repository >
2023-07-26 21:31:23 +02:00
<id > jitpack.io</id>
<url > https://jitpack.io/</url>
2021-07-22 16:58:08 +02:00
</repository>
<repository >
<id > public</id>
<url > https://repo.songoda.com/repository/public/</url>
</repository>
</repositories>
<dependencies >
2023-07-26 21:31:23 +02:00
<dependency >
2023-07-29 15:06:06 +02:00
<groupId > com.craftaro</groupId>
<artifactId > CraftaroCore</artifactId>
<version > 3.0.0-SNAPSHOT</version>
2023-07-26 21:31:23 +02:00
<scope > compile</scope>
</dependency>
2021-07-22 16:58:08 +02:00
<dependency >
<groupId > io.papermc</groupId>
<artifactId > paperlib</artifactId>
2024-01-13 18:08:29 +01:00
<version > 1.0.8</version>
2021-07-22 16:58:08 +02:00
<scope > compile</scope>
</dependency>
<dependency >
2023-07-26 21:31:23 +02:00
<groupId > io.papermc.paper</groupId>
2021-07-22 16:58:08 +02:00
<artifactId > paper-api</artifactId>
2023-07-26 21:31:23 +02:00
<version > 1.20.1-R0.1-SNAPSHOT</version>
2021-07-22 16:58:08 +02:00
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.spigotmc</groupId>
2024-03-01 06:20:42 +01:00
<artifactId > spigot-api</artifactId>
2023-07-26 21:31:23 +02:00
<version > 1.20.1-R0.1-SNAPSHOT</version>
2021-12-09 22:17:54 +01:00
<scope > provided</scope>
2021-07-22 16:58:08 +02:00
</dependency>
<dependency >
<groupId > com.github.MilkBowl</groupId>
<artifactId > VaultAPI</artifactId>
2024-01-13 18:08:37 +01:00
<version > 1.7.1</version>
2021-07-22 16:58:08 +02:00
<scope > provided</scope>
</dependency>
<dependency >
<groupId > me.clip</groupId>
<artifactId > placeholderapi</artifactId>
2024-01-13 18:09:26 +01:00
<version > 2.11.5</version>
2021-07-22 16:58:08 +02:00
<scope > provided</scope>
</dependency>
<dependency >
2023-08-15 19:02:31 +02:00
<groupId > com.craftaro</groupId>
<artifactId > UltimateStacker-API</artifactId>
<version > 1.0.0-SNAPSHOT</version>
2021-07-22 16:58:08 +02:00
<scope > provided</scope>
</dependency>
<dependency >
2023-08-15 21:36:53 +02:00
<groupId > com.craftaro</groupId>
<artifactId > EpicSpawners-API</artifactId>
<version > 1.0.0-SNAPSHOT</version>
2021-07-22 16:58:08 +02:00
<scope > provided</scope>
</dependency>
<dependency >
2023-07-26 21:31:23 +02:00
<groupId > com.sk89q.worldedit</groupId>
2021-07-22 16:58:08 +02:00
<artifactId > worldedit-bukkit</artifactId>
2024-04-06 21:12:07 +02:00
<version > 7.2.20</version>
2023-07-26 21:31:23 +02:00
<scope > provided</scope>
2021-07-22 16:58:08 +02:00
</dependency>
2024-03-01 06:20:42 +01:00
<dependency >
<groupId > com.mojang</groupId>
<artifactId > authlib</artifactId>
<version > 3.16.29</version>
<scope > provided</scope>
</dependency>
2024-03-02 15:51:45 +01:00
2024-03-01 06:20:42 +01:00
<dependency >
<groupId > io.netty</groupId>
<artifactId > netty-all</artifactId>
2024-04-01 14:38:32 +02:00
<version > 4.1.108.Final</version>
2024-03-02 15:51:45 +01:00
<scope > provided</scope>
2024-03-01 06:20:42 +01:00
</dependency>
2024-03-02 15:51:45 +01:00
2024-03-01 06:20:42 +01:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > 2.6</version>
2024-03-02 15:51:45 +01:00
<scope > compile</scope>
2024-03-01 06:20:42 +01:00
</dependency>
2021-07-22 16:58:08 +02:00
<dependency >
<groupId > com.eatthepath</groupId>
<artifactId > fast-uuid</artifactId>
2023-07-26 21:31:23 +02:00
<version > 0.2.0</version>
2021-07-22 16:58:08 +02:00
<scope > compile</scope>
</dependency>
2023-08-16 09:51:08 +02:00
<!-- TODO: Check what repo has com.Zrips:Residence -->
2021-07-22 16:58:08 +02:00
<dependency >
<groupId > com.Zrips</groupId>
<artifactId > Residence</artifactId>
<scope > provided</scope>
<version > 4.9.0.6</version>
</dependency>
</dependencies>
2019-12-28 04:37:45 +01:00
</project>