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"
|
|
|
|
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>com.songoda</groupId>
|
|
|
|
<artifactId>skyblock</artifactId>
|
2020-06-24 20:38:58 +02:00
|
|
|
<version>2.3.4-DEV2</version>
|
2020-04-19 15:39:08 +02:00
|
|
|
<packaging>jar</packaging>
|
2020-06-19 09:03:19 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2020-06-25 04:20:55 +02:00
|
|
|
</properties>
|
2019-12-28 04:37:45 +01:00
|
|
|
<build>
|
2019-12-28 05:36:11 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2019-12-28 04:56:03 +01:00
|
|
|
<finalName>FabledSkyblock-${project.version}</finalName>
|
2019-12-28 04:37:45 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
2019-12-28 05:36:11 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
<artifactId>replacer</artifactId>
|
|
|
|
<version>1.5.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>replace</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<file>${project.build.directory}/classes/plugin.yml</file>
|
|
|
|
<replacements>
|
|
|
|
<replacement>
|
|
|
|
<token>maven-version-number</token>
|
|
|
|
<value>${project.version}</value>
|
|
|
|
</replacement>
|
|
|
|
</replacements>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-12-28 04:37:45 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-06-19 09:03:19 +02:00
|
|
|
<version>3.8.1</version>
|
2019-12-28 04:37:45 +01:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-01-26 20:51:40 +01:00
|
|
|
|
2019-12-28 04:37:45 +01:00
|
|
|
<plugin>
|
2020-01-26 20:51:40 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2019-12-28 04:37:45 +01:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-01-26 20:51:40 +01:00
|
|
|
<version>3.1.0</version>
|
2019-12-28 04:37:45 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2020-01-26 20:51:40 +01:00
|
|
|
<id>shaded</id>
|
2019-12-28 04:37:45 +01:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2020-01-26 20:51:40 +01:00
|
|
|
<configuration>
|
2020-06-22 19:06:25 +02:00
|
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
2020-01-26 20:51:40 +01:00
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.songoda:SongodaCore</include>
|
2020-06-22 19:06:25 +02:00
|
|
|
<include>io.papermc:paperlib</include>
|
2020-01-26 20:51:40 +01:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.songoda.core</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.skyblock.core</shadedPattern>
|
|
|
|
</relocation>
|
2020-06-22 19:06:25 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>io.papermc.lib</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.paperlib</shadedPattern>
|
|
|
|
</relocation>
|
2020-01-26 20:51:40 +01:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
2019-12-28 04:37:45 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mvdw-software</id>
|
|
|
|
<name>MVdW Public Repositories</name>
|
|
|
|
<url>http://repo.mvdw-software.be/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-06-22 19:06:25 +02:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2019-12-28 04:37:45 +01:00
|
|
|
<repository>
|
|
|
|
<id>minecraft-repo</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
2020-02-04 17:45:44 +01:00
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
2019-12-28 04:37:45 +01:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>reserve-repo</id>
|
|
|
|
<url>https://dl.bintray.com/theneweconomy/java/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-03-16 20:33:39 +01:00
|
|
|
<repository>
|
|
|
|
<id>public</id>
|
|
|
|
<url>http://repo.songoda.com/artifactory/public/</url>
|
|
|
|
</repository>
|
2019-12-28 04:37:45 +01:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2020-06-22 19:06:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-12-28 04:37:45 +01:00
|
|
|
<dependency>
|
2020-06-22 05:20:08 +02:00
|
|
|
<groupId>com.destroystokyo.papermc</groupId>
|
|
|
|
<artifactId>paper</artifactId>
|
|
|
|
<version>1.15.2</version>
|
2020-01-26 20:51:40 +01:00
|
|
|
<scope>provided</scope>
|
2020-06-22 19:06:25 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.15</version>
|
|
|
|
<scope>provided</scope>
|
2020-01-26 20:51:40 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>ultimatestacker</artifactId>
|
|
|
|
<version>1.3.1</version>
|
2019-12-28 04:37:45 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>be.maximvdw</groupId>
|
|
|
|
<artifactId>MVdWPlaceholderAPI</artifactId>
|
|
|
|
<version>2.1.1-SNAPSHOT</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.9.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.robin</groupId>
|
2020-04-19 11:39:00 +02:00
|
|
|
<artifactId>LeaderHeadsAPI</artifactId>
|
2019-12-28 04:37:45 +01:00
|
|
|
<version>1.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>epicspawners</artifactId>
|
|
|
|
<version>6-pre4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>EpicAnchors</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
2020-03-22 08:56:42 +01:00
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>7.1.0</version>
|
2019-12-28 04:37:45 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
2020-01-26 20:51:40 +01:00
|
|
|
<artifactId>SongodaCore</artifactId>
|
|
|
|
<version>LATEST</version>
|
2019-12-28 04:37:45 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-06-19 03:07:26 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.Zrips</groupId>
|
|
|
|
<artifactId>Residence</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<version>4.9.0.6</version>
|
|
|
|
</dependency>
|
2020-06-21 18:56:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net</groupId>
|
|
|
|
<artifactId>coreprotect</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<version>2.18.2</version>
|
|
|
|
</dependency>
|
2019-12-28 04:37:45 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|