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>
2023-10-23 18:14:14 +02:00
<version > 3.0.0-b7-SNAPSHOT</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>
2023-07-26 21:31:23 +02:00
<version > 3.5.0</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 > io.papermc.lib</pattern>
2023-08-15 18:52:43 +02:00
<shadedPattern > com.craftaro.skyblock.third_party.io.papermc.lib</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>
</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>
2023-07-26 21:31:23 +02:00
<version > 1.0.7</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>
<artifactId > spigot</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>
<version > 1.7</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > me.clip</groupId>
<artifactId > placeholderapi</artifactId>
2023-07-26 21:31:23 +02:00
<version > 2.11.3</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>
2023-07-26 21:31:23 +02:00
<version > 7.2.9</version>
<scope > provided</scope>
2021-07-22 16:58:08 +02:00
</dependency>
<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>