UltimateStacker/pom.xml

118 lines
4.8 KiB
XML
Raw Normal View History

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>
2019-09-03 23:08:30 +02:00
<include>com.songoda:SongodaCore</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>
2019-09-03 23:08:30 +02:00
<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>
2019-04-26 10:06:18 +02:00
</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>
<dependency>
<groupId>org.spigotmc</groupId>
2019-09-03 23:08:30 +02:00
<artifactId>spigot-api</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
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>
2019-09-03 23:08:30 +02:00
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
2018-11-06 04:33:10 +01:00
</dependency>
2019-06-09 17:20:22 +02:00
<dependency>
<groupId>com.gamingmesh</groupId>
<artifactId>jobs</artifactId>
<version>4.10.3</version>
</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>