mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-25 11:46:45 +01:00
193 lines
7.0 KiB
XML
193 lines
7.0 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>
|
|
|
|
<parent>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>EpicHoppers-Parent</artifactId>
|
|
<version>5.4.0</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>EpicHoppers-Plugin</artifactId>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
|
|
<configuration>
|
|
<finalName>${project.parent.name}-${project.version}</finalName>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.craftaro.core</pattern>
|
|
<shadedPattern>com.craftaro.epichoppers.core</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
<exclude>META-INF/**</exclude>
|
|
<exclude>LICENSE</exclude>
|
|
<exclude>LICENSE.**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
|
|
<filter>
|
|
<artifact>com.craftaro:CraftaroCore</artifact>
|
|
<excludeDefaults>false</excludeDefaults>
|
|
<includes>
|
|
<include>**/nms/v*/**</include>
|
|
<include>**/third_party/net/kyori/**</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/third_party/org/apache/**</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>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>rosewood-repo</id>
|
|
<url>https://repo.rosewooddev.io/repository/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>public</id>
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>bg-repo</id>
|
|
<url>https://repo.bg-software.com/repository/api/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>songoda-public</id>
|
|
<url>https://repo.songoda.com/repository/minecraft-plugins/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>EpicHoppers-API</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>CraftaroCore</artifactId>
|
|
<version>${craftaro.coreVersion}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.20.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>FabledSkyBlock</artifactId>
|
|
<version>3.0.8-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>EpicFarming</artifactId>
|
|
<version>4.2.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.brcdev-minecraft</groupId>
|
|
<artifactId>shopgui-api</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.Gypopo</groupId>
|
|
<artifactId>EconomyShopGUI-API</artifactId>
|
|
<version>1.7.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>UltimateStacker-API</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.bgsoftware</groupId>
|
|
<artifactId>WildStackerAPI</artifactId>
|
|
<version>2024.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>dev.rosewood</groupId>
|
|
<artifactId>rosestacker</artifactId>
|
|
<version>1.5.23</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.DeadSilenceIV</groupId>
|
|
<artifactId>AdvancedChestsAPI</artifactId>
|
|
<version>3.2-BETA</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|