mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-02 16:49:52 +01:00
130 lines
5.1 KiB
XML
130 lines
5.1 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>UltimateStacker</artifactId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<version>maven-version-number</version>
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<finalName>UltimateStacker-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<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>
|
|
<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>
|
|
<minimizeJar>true</minimizeJar>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.songoda:SongodaCore</include>
|
|
<include>com.songoda:Lootables</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>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.songoda.core</pattern>
|
|
<shadedPattern>${project.groupId}.ultimatestacker.core</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.songoda.lootables</pattern>
|
|
<shadedPattern>${project.groupId}.ultimatestacker.lootables</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>private</id>
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CodeMC</id>
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>Lootables</artifactId>
|
|
<version>1.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>SongodaCore</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gamingmesh</groupId>
|
|
<artifactId>jobs</artifactId>
|
|
<version>4.10.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bgsoftware</groupId>
|
|
<artifactId>WildStacker</artifactId>
|
|
<version>2-9-0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>uk.antiperson</groupId>
|
|
<artifactId>stackmob</artifactId>
|
|
<version>4-0-2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.minebuilders</groupId>
|
|
<artifactId>Clearlag</artifactId>
|
|
<version>3.0.6</version>
|
|
</dependency>
|
|
<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>
|
|
</dependencies>
|
|
</project>
|