2018-11-06 04:33:10 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>UltimateStacker</artifactId>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-11-16 03:03:56 +01:00
|
|
|
<version>maven-version-number</version>
|
2018-11-06 04:33:10 +01:00
|
|
|
<build>
|
2018-11-16 03:03:56 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2019-05-24 01:23:51 +02:00
|
|
|
<finalName>UltimateStacker-${project.version}</finalName>
|
2018-11-06 04:33:10 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-11-16 03:03:56 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2019-04-26 10:06:18 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
2018-11-06 04:33:10 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-04-26 10:06:18 +02:00
|
|
|
<id>shaded</id>
|
|
|
|
<phase>package</phase>
|
2018-11-06 04:33:10 +01:00
|
|
|
<goals>
|
2019-04-26 10:06:18 +02:00
|
|
|
<goal>shade</goal>
|
2018-11-06 04:33:10 +01:00
|
|
|
</goals>
|
2019-04-26 10:06:18 +02:00
|
|
|
<configuration>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.songoda:songodaupdater</include>
|
2019-07-23 16:55:49 +02:00
|
|
|
<include>com.songoda:Lootables</include>
|
2019-08-02 15:59:10 +02:00
|
|
|
<include>com.zaxxer:HikariCP</include>
|
|
|
|
<include>org.slf4j:slf4j-api</include>
|
|
|
|
<include>org.slf4j:slf4j-nop</include>
|
2019-04-26 10:06:18 +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>
|
|
|
|
</configuration>
|
2018-11-06 04:33:10 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
2019-02-18 16:56:34 +01:00
|
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
2018-11-06 04:33:10 +01:00
|
|
|
</repository>
|
2019-08-02 15:59:10 +02:00
|
|
|
<repository>
|
|
|
|
<id>CodeMC</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
|
|
|
</repository>
|
2018-11-06 04:33:10 +01:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2019-02-18 16:48:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
|
|
<artifactId>holographicdisplays-api</artifactId>
|
2019-02-19 22:16:10 +01:00
|
|
|
<version>2.3.2</version>
|
2019-02-18 16:48:00 +01:00
|
|
|
</dependency>
|
2018-11-06 04:33:10 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2019-05-23 22:15:04 +02:00
|
|
|
<version>1.14.1</version>
|
2019-04-26 10:10:50 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-04-26 10:06:18 +02:00
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>songodaupdater</artifactId>
|
|
|
|
<version>1</version>
|
2018-11-06 04:33:10 +01:00
|
|
|
</dependency>
|
2019-07-23 16:55:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>Lootables</artifactId>
|
2019-07-24 16:46:08 +02:00
|
|
|
<version>1.0.3</version>
|
2019-07-23 16:55:49 +02:00
|
|
|
</dependency>
|
2018-11-06 04:33:10 +01:00
|
|
|
<dependency>
|
2018-11-16 03:03:56 +01:00
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
2019-03-07 19:56:08 +01:00
|
|
|
<version>1.7.1</version>
|
2018-11-06 04:33:10 +01:00
|
|
|
</dependency>
|
2019-06-09 17:20:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
|
|
|
<version>1.7.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gamingmesh</groupId>
|
|
|
|
<artifactId>jobs</artifactId>
|
|
|
|
<version>4.10.3</version>
|
|
|
|
</dependency>
|
2019-06-09 17:28:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bgsoftware</groupId>
|
|
|
|
<artifactId>WildStacker</artifactId>
|
2019-07-17 14:56:50 +02:00
|
|
|
<version>2-9-0</version>
|
2019-06-09 17:28:18 +02:00
|
|
|
</dependency>
|
2019-06-10 02:47:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>uk.antiperson</groupId>
|
|
|
|
<artifactId>stackmob</artifactId>
|
2019-07-18 21:43:55 +02:00
|
|
|
<version>4-0-2</version>
|
2019-06-10 02:47:29 +02:00
|
|
|
</dependency>
|
2019-06-20 09:33:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.minebuilders</groupId>
|
|
|
|
<artifactId>Clearlag</artifactId>
|
|
|
|
<version>3.0.6</version>
|
|
|
|
</dependency>
|
2019-08-02 15:59:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.23.1</version>
|
|
|
|
</dependency>
|
2018-11-06 04:33:10 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|