2019-05-27 01:33:05 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
2018-11-15 22:53:39 +01:00
|
|
|
<groupId>com.songoda</groupId>
|
2019-05-27 01:33:05 +02:00
|
|
|
<artifactId>EpicHoppers</artifactId>
|
2020-04-16 18:42:06 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-05 16:59:30 +02:00
|
|
|
<version>4.6.13</version>
|
2018-11-01 05:40:01 +01:00
|
|
|
<build>
|
2018-11-15 22:53:39 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2019-05-27 01:33:05 +02:00
|
|
|
<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>
|
2019-05-27 01:33:05 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.0</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>
|
2019-05-27 01:33:05 +02: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>
|
2019-10-05 22:02:31 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.songoda.core</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.epichoppers.core</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2019-05-27 01:33:05 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-11-01 05:40:01 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
2020-10-01 22:13:00 +02:00
|
|
|
<url>https://repo.songoda.com/repository/private/</url>
|
2018-11-01 05:40:01 +01:00
|
|
|
</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>
|
2018-11-01 05:40:01 +01:00
|
|
|
</repositories>
|
2019-05-27 01:33:05 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2019-08-25 23:50:32 +02:00
|
|
|
<artifactId>spigot</artifactId>
|
2020-06-29 01:16:57 +02:00
|
|
|
<version>1.16.1</version>
|
2019-05-27 01:33:05 +02:00
|
|
|
</dependency>
|
2020-05-30 16:10:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>skyblock</artifactId>
|
|
|
|
<version>2.2.13</version>
|
|
|
|
</dependency>
|
2019-05-27 01:33:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
2019-10-05 22:02:31 +02:00
|
|
|
<artifactId>SongodaCore</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
<scope>compile</scope>
|
2019-07-14 01:10:00 +02:00
|
|
|
</dependency>
|
2019-05-27 01:33:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.arcaniax</groupId>
|
|
|
|
<artifactId>liquidtanks</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
2020-04-10 11:24:03 +02:00
|
|
|
<artifactId>fabledskyblock</artifactId>
|
|
|
|
<version>LATEST</version>
|
2019-05-27 01:33:05 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-31 10:12:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
2019-10-03 15:58:58 +02:00
|
|
|
<artifactId>EpicFarming</artifactId>
|
|
|
|
<version>2.3.1</version>
|
2019-05-31 10:12:57 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-06-05 00:39:13 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.brcdev</groupId>
|
|
|
|
<artifactId>ShopGUIPlus</artifactId>
|
2019-06-05 00:41:54 +02:00
|
|
|
<version>1.19.5</version>
|
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>1.9.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.bgsoftware</groupId>
|
|
|
|
<artifactId>WildStacker</artifactId>
|
2020-10-01 22:13:00 +02:00
|
|
|
<version>b20</version>
|
2019-07-20 15:24:42 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-27 01:33:05 +02:00
|
|
|
</dependencies>
|
2018-11-01 05:40:01 +01:00
|
|
|
</project>
|