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>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-11-15 22:53:39 +01:00
|
|
|
<version>maven-version-number</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-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>
|
|
|
|
<include>com.songoda:songodaupdater</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>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-11-01 05:40:01 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
2019-02-03 22:30:39 +01:00
|
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
2018-11-01 05:40:01 +01:00
|
|
|
</repository>
|
2019-07-20 15:24:42 +02:00
|
|
|
<repository>
|
|
|
|
<id>reserve-repo</id>
|
|
|
|
<url>https://dl.bintray.com/theneweconomy/java/</url>
|
|
|
|
</repository>
|
2018-11-01 05:40:01 +01:00
|
|
|
</repositories>
|
2019-05-27 01:33:05 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.14.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>songodaupdater</artifactId>
|
|
|
|
<version>1</version>
|
|
|
|
</dependency>
|
2019-07-14 01:10:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>UltimateStacker</artifactId>
|
|
|
|
<version>1.6.5.1</version>
|
|
|
|
</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>xyz.wildseries</groupId>
|
|
|
|
<artifactId>wildstacker</artifactId>
|
|
|
|
<version>b13</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
|
|
|
<version>1.7.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>playerpoints</artifactId>
|
|
|
|
<version>2.1.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>fabledskyblock</artifactId>
|
|
|
|
<version>72</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-31 10:12:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>epicfarming</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<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>
|
|
|
|
<groupId>net.tnemc</groupId>
|
|
|
|
<artifactId>Reserve</artifactId>
|
|
|
|
<version>0.1.3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-27 01:33:05 +02:00
|
|
|
</dependencies>
|
2018-11-01 05:40:01 +01:00
|
|
|
</project>
|