UltimateStacker/pom.xml

148 lines
5.3 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>
2022-10-26 22:16:36 +02:00
<version>2.3.1</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>
2022-09-06 21:28:39 +02:00
2018-11-16 03:03:56 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2022-09-06 21:28:39 +02:00
2019-12-04 00:12:45 +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>
2022-09-06 21:28:39 +02:00
2018-11-16 03:03:56 +01:00
<plugin>
2019-04-26 10:06:18 +02:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-09-06 21:28:39 +02:00
<version>3.3.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>
<minimizeJar>true</minimizeJar>
2019-04-26 10:06:18 +02:00
<artifactSet>
<includes>
2019-09-03 23:08:30 +02:00
<include>com.songoda:SongodaCore</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>
</relocations>
2019-04-26 10:06:18 +02:00
</configuration>
2018-11-06 04:33:10 +01:00
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-09-06 21:28:39 +02:00
2018-11-06 04:33:10 +01:00
<repositories>
2020-03-16 20:30:43 +01:00
<repository>
2021-12-02 17:56:38 +01:00
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 20:30:43 +01:00
</repository>
2021-12-02 17:56:38 +01:00
2019-08-02 15:59:10 +02:00
<repository>
2021-12-02 17:56:38 +01:00
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2019-08-02 15:59:10 +02:00
</repository>
2021-12-02 17:56:38 +01:00
2019-09-03 23:14:38 +02:00
<repository>
2021-12-02 17:56:38 +01:00
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
2019-09-03 23:14:38 +02:00
</repository>
2018-11-06 04:33:10 +01:00
</repositories>
2022-09-06 21:28:39 +02:00
2018-11-06 04:33:10 +01:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
2019-09-03 23:08:30 +02:00
<scope>provided</scope>
2018-11-06 04:33:10 +01: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>
2022-10-26 22:16:36 +02:00
<version>2.6.17-SNAPSHOT</version>
2019-09-03 23:08:30 +02:00
<scope>compile</scope>
2018-11-06 04:33:10 +01:00
</dependency>
2019-09-03 23:33:06 +02:00
<dependency>
<groupId>com.bgsoftware</groupId>
2021-01-15 21:25:08 +01:00
<artifactId>wildstacker</artifactId>
<version>3.5.1</version>
<scope>provided</scope>
2019-09-03 23:33:06 +02:00
</dependency>
2019-09-03 23:33:06 +02:00
<dependency>
<groupId>uk.antiperson</groupId>
<artifactId>stackmob</artifactId>
<version>4-0-2</version>
<scope>provided</scope>
2019-09-03 23:33:06 +02:00
</dependency>
2019-06-20 09:33:29 +02:00
<dependency>
<groupId>me.minebuilders</groupId>
<artifactId>Clearlag</artifactId>
<version>3.0.6</version>
<scope>provided</scope>
2019-06-20 09:33:29 +02:00
</dependency>
2020-10-26 18:44:03 +01:00
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicMobs</artifactId>
<version>4.10.1</version>
<scope>provided</scope>
2020-10-26 18:44:03 +01:00
</dependency>
2018-11-06 04:33:10 +01:00
</dependencies>
</project>