EpicHoppers/pom.xml

173 lines
5.7 KiB
XML
Raw Normal View History

<?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>
2018-11-15 22:53:39 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicHoppers</artifactId>
2023-04-22 17:48:07 +02:00
<version>4.7.9</version>
2021-12-13 15:09:50 +01:00
<name>EpicHoppers</name>
<description>Connect hoppers over long distances, filter out unwanted items, auto break blocks, auto sell items and much more.</description>
<url>https://craftaro.com/marketplace/product/15</url>
2021-12-13 15:09:50 +01:00
<properties>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
2021-12-13 15:09:50 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2021-12-13 15:09:50 +01:00
<issueManagement>
<url>https://discord.gg/craftaro</url>
<system>Discord server</system>
</issueManagement>
2021-12-13 15:09:50 +01:00
<scm>
<url>https://github.com/craftaro/EpicHoppers</url>
<connection>scm:git:git://github.com/craftaro/EpicHoppers.git</connection>
</scm>
2021-12-13 15:09:50 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
2021-12-13 15:09:50 +01:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2021-12-13 15:09:50 +01:00
<configuration>
<finalName>${project.name}-${project.version}</finalName>
<shadedArtifactAttached>false</shadedArtifactAttached>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<minimizeJar>true</minimizeJar>
2021-12-13 15:09:50 +01:00
<relocations>
<relocation>
<pattern>com.craftaro.core</pattern>
<shadedPattern>com.songoda.epichoppers.core</shadedPattern>
</relocation>
</relocations>
2021-12-13 15:09:50 +01:00
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2018-11-01 05:40:01 +01:00
</plugins>
2021-12-13 15:09:50 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2021-12-13 15:09:50 +01:00
2018-11-01 05:40:01 +01:00
<repositories>
<repository>
<id>craftaro-minecraft-plugins</id>
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
</repository>
2020-03-16 18:11:48 +01:00
<repository>
<id>public</id>
2020-10-01 22:13:00 +02:00
<url>https://repo.songoda.com/repository/public/</url>
2019-08-25 23:41:43 +02:00
</repository>
2021-12-13 15:09:50 +01:00
2021-09-30 06:31:15 +02:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2021-12-13 15:09:50 +01:00
2021-12-09 02:39:24 +01:00
<repository>
<id>spigot-repo</id>
2021-12-09 02:39:24 +01:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2018-11-01 05:40:01 +01:00
</repositories>
2021-12-13 15:09:50 +01:00
<dependencies>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
<version>2.6.20</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
2021-12-09 02:39:24 +01:00
<artifactId>spigot-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2021-12-13 15:09:50 +01:00
2020-05-30 16:10:22 +02:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>skyblock</artifactId>
<version>2.3.30</version>
2021-09-30 06:31:15 +02:00
<scope>provided</scope>
2020-05-30 16:10:22 +02:00
</dependency>
2021-12-13 15:09:50 +01:00
<dependency>
<groupId>com.songoda</groupId>
2019-10-03 15:58:58 +02:00
<artifactId>EpicFarming</artifactId>
2020-10-23 20:03:46 +02:00
<version>3.0.24</version>
<scope>provided</scope>
</dependency>
2021-12-13 15:09:50 +01:00
2019-06-05 00:39:13 +02:00
<dependency>
<groupId>com.github.brcdev-minecraft</groupId>
<artifactId>shopgui-api</artifactId>
<version>2.2.0</version>
<scope>provided</scope>
2019-06-05 00:39:13 +02:00
</dependency>
2021-12-13 15:09:50 +01:00
<dependency>
<groupId>com.github.Gypopo</groupId>
<artifactId>EconomyShopGUI-API</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>
2019-07-20 15:24:42 +02:00
<dependency>
2019-10-05 22:02:31 +02:00
<groupId>com.songoda</groupId>
<artifactId>UltimateStacker</artifactId>
<version>2.1.6</version>
2019-10-05 22:02:31 +02:00
<scope>provided</scope>
</dependency>
2021-12-13 15:09:50 +01:00
2019-10-05 22:02:31 +02:00
<dependency>
<groupId>com.bgsoftware</groupId>
2021-01-15 23:09:55 +01:00
<artifactId>wildstacker</artifactId>
<version>3.5.1</version>
2019-07-20 15:24:42 +02:00
<scope>provided</scope>
</dependency>
2021-12-13 15:09:50 +01:00
2021-09-30 06:31:15 +02:00
<dependency>
<groupId>com.github.DeadSilenceIV</groupId>
<artifactId>AdvancedChestsAPI</artifactId>
<version>2.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
2018-11-01 05:40:01 +01:00
</project>