UltimateModeration/pom.xml

141 lines
4.9 KiB
XML
Raw Permalink Normal View History

2019-02-27 02:50:18 +01:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>com.songoda</groupId>
<artifactId>UltimateModeration</artifactId>
<modelVersion>4.0.0</modelVersion>
2023-04-13 14:29:21 +02:00
<version>2.0.15</version>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<build>
<defaultGoal>clean install</defaultGoal>
<finalName>UltimateModeration-${project.version}</finalName>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2021-12-02 18:17:58 +01:00
2020-02-01 12:16:35 +01:00
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
2021-12-02 18:17:58 +01:00
2020-02-01 12:16:35 +01:00
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
2021-12-02 18:17:58 +01:00
2020-02-01 12:16:35 +01:00
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<plugin>
2019-04-26 09:37:00 +02:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-09-06 21:23:32 +02:00
<version>3.3.0</version>
2019-02-27 02:50:18 +01:00
<executions>
<execution>
2019-04-26 09:37:00 +02:00
<id>shaded</id>
<phase>package</phase>
2019-02-27 02:50:18 +01:00
<goals>
2019-04-26 09:37:00 +02:00
<goal>shade</goal>
2019-02-27 02:50:18 +01:00
</goals>
2021-12-02 18:17:58 +01:00
2019-04-26 09:37:00 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
2021-12-02 18:17:58 +01:00
2019-04-26 09:37:00 +02:00
<artifactSet>
<includes>
2019-10-19 19:29:46 +02:00
<include>com.songoda:SongodaCore</include>
2019-04-26 09:37:00 +02:00
</includes>
</artifactSet>
2021-12-02 18:17:58 +01:00
2019-04-26 09:37:00 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
2021-12-02 18:17:58 +01:00
2019-10-19 19:29:46 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.ultimatemoderation.core</shadedPattern>
</relocation>
</relocations>
2019-04-26 09:37:00 +02:00
</configuration>
2019-02-27 02:50:18 +01:00
</execution>
</executions>
</plugin>
</plugins>
</build>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<repositories>
2020-03-16 18:32:37 +01:00
<repository>
2021-12-02 18:17:58 +01:00
<id>songoda-public</id>
2020-09-22 05:31:44 +02:00
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 18:32:37 +01:00
</repository>
2021-12-02 18:17:58 +01:00
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2020-04-14 22:33:48 +02:00
<repository>
<id>jitpack.io</id>
2021-12-02 18:17:58 +01:00
<url>https://jitpack.io/</url>
2020-04-14 22:33:48 +02:00
</repository>
2019-02-27 02:50:18 +01:00
</repositories>
2021-12-02 18:17:58 +01:00
2019-02-27 02:50:18 +01:00
<dependencies>
2022-03-18 21:35:27 +01:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
2023-04-13 14:28:57 +02:00
<version>2.6.19</version>
2022-03-18 21:35:27 +01:00
<scope>compile</scope>
</dependency>
2019-02-27 02:50:18 +01:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
<scope>provided</scope>
2019-04-26 09:37:00 +02:00
</dependency>
2021-12-02 18:17:58 +01:00
2020-04-14 22:33:48 +02:00
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
2021-12-02 18:17:58 +01:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>abledskyblock</artifactId>
<version>79.1</version>
<scope>provided</scope>
</dependency>
2019-02-27 02:50:18 +01:00
</dependencies>
</project>