EpicHoppers/pom.xml

153 lines
5.9 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0">
2018-11-15 22:53:39 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicHoppers</artifactId>
2020-04-16 18:42:06 +02:00
<modelVersion>4.0.0</modelVersion>
2021-12-11 14:34:16 +01:00
<version>4.7.1</version>
2018-11-01 05:40:01 +01:00
<build>
2018-11-15 22:53:39 +01:00
<defaultGoal>clean install</defaultGoal>
<finalName>EpicHoppers-${project.version}</finalName>
2018-11-01 05:40:01 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2018-11-15 22:53:39 +01:00
<version>3.8.0</version>
2018-11-01 05:40:01 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2019-12-21 21:09:29 +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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-13 19:28:42 +02:00
<version>3.3.0-SNAPSHOT</version>
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
2019-10-05 22:02:31 +02:00
<include>com.songoda:SongodaCore</include>
</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>
2019-10-05 22:02:31 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epichoppers.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2018-11-01 05:40:01 +01:00
</plugins>
</build>
2021-06-13 19:28:42 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2018-11-01 05:40:01 +01:00
<repositories>
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-09-30 06:31:15 +02:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2021-12-09 02:39:24 +01:00
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2018-11-01 05:40:01 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
2021-12-09 02:39:24 +01:00
<artifactId>spigot-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
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>
<dependency>
<groupId>com.songoda</groupId>
2019-10-05 22:02:31 +02:00
<artifactId>SongodaCore</artifactId>
2021-12-11 14:33:09 +01:00
<version>2.6.5</version>
2019-10-05 22:02:31 +02:00
<scope>compile</scope>
</dependency>
<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>
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>
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>
<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-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>