mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2025-02-16 19:51:27 +01:00
211 lines
7.3 KiB
XML
211 lines
7.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/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>com.songoda</groupId>
|
||
<artifactId>skyblock</artifactId>
|
||
<version>2.5.2</version>
|
||
|
||
<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>
|
||
|
||
<properties>
|
||
<maven.compiler.release>8</maven.compiler.release>
|
||
<maven.compiler.target>1.8</maven.compiler.target>
|
||
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<build>
|
||
<plugins>
|
||
<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.songoda.core</pattern>
|
||
<shadedPattern>com.songoda.skyblock.core</shadedPattern>
|
||
</relocation>
|
||
|
||
<relocation>
|
||
<pattern>io.papermc.lib</pattern>
|
||
<shadedPattern>com.songoda.skyblock.third_party.io.papermc.lib</shadedPattern>
|
||
</relocation>
|
||
|
||
<relocation>
|
||
<pattern>com.eatthepath.uuid</pattern>
|
||
<shadedPattern>com.songoda.skyblock.third_party.com.eatthepath.uuid</shadedPattern>
|
||
</relocation>
|
||
</relocations>
|
||
|
||
<filters>
|
||
<filter>
|
||
<artifact>*:*</artifact>
|
||
|
||
<excludes>
|
||
<exclude>META-INF/**</exclude>
|
||
<exclude>LICENSE</exclude>
|
||
<exclude>LICENSE.**</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>craftaro-minecraft-plugins</id>
|
||
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>SpigotMC</id>
|
||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>papermc</id>
|
||
<url>https://repo.papermc.io/repository/maven-public/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>placeholderapi</id>
|
||
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>enginehub-maven</id>
|
||
<url>https://maven.enginehub.org/repo/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>jitpack.io</id>
|
||
<url>https://jitpack.io/</url>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>public</id>
|
||
<url>https://repo.songoda.com/repository/public/</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.songoda</groupId>
|
||
<artifactId>SongodaCore</artifactId>
|
||
<version>2.6.19</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.papermc</groupId>
|
||
<artifactId>paperlib</artifactId>
|
||
<version>1.0.7</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.papermc.paper</groupId>
|
||
<artifactId>paper-api</artifactId>
|
||
<version>1.20.1-R0.1-SNAPSHOT</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.spigotmc</groupId>
|
||
<artifactId>spigot</artifactId>
|
||
<version>1.20.1-R0.1-SNAPSHOT</version>
|
||
<scope>provided</scope>
|
||
</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>
|
||
<version>2.11.3</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.songoda</groupId>
|
||
<artifactId>UltimateStacker</artifactId>
|
||
<version>2.1.1</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.songoda</groupId>
|
||
<artifactId>epicspawners</artifactId>
|
||
<version>7.0.1</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sk89q.worldedit</groupId>
|
||
<artifactId>worldedit-bukkit</artifactId>
|
||
<version>7.2.9</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.eatthepath</groupId>
|
||
<artifactId>fast-uuid</artifactId>
|
||
<version>0.2.0</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<!-- TODO: Check what repo has LeaderHeadsAPI -->
|
||
<dependency>
|
||
<groupId>com.Zrips</groupId>
|
||
<artifactId>Residence</artifactId>
|
||
<scope>provided</scope>
|
||
<version>4.9.0.6</version>
|
||
</dependency>
|
||
|
||
<!-- TODO: Check what repo has LeaderHeadsAPI – The project is abandoned so removing support for it might be worth a thought -->
|
||
<dependency>
|
||
<groupId>me.robin</groupId>
|
||
<artifactId>LeaderHeadsAPI</artifactId>
|
||
<version>1.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|