UltimateModeration/pom.xml

146 lines
5.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2019-02-27 02:50:18 +01:00
<groupId>com.songoda</groupId>
<artifactId>UltimateModeration</artifactId>
2023-04-13 14:29:21 +02:00
<version>2.0.15</version>
2021-12-02 18:17:58 +01:00
<name>UltimateModeration</name>
<description>Take complete control over your server with punishment templates via a simplified yet powerful moderation system</description>
<url>https://craftaro.com/marketplace/product/29</url>
2021-12-02 18:17:58 +01:00
<properties>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
2021-12-02 18:17:58 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2021-12-02 18:17:58 +01:00
<issueManagement>
<url>https://discord.gg/craftaro</url>
<system>Discord server</system>
</issueManagement>
2021-12-02 18:17:58 +01:00
<scm>
<url>https://github.com/craftaro/UltimateModeration</url>
<connection>scm:git:git://github.com/craftaro/UltimateModeration.git</connection>
</scm>
2021-12-02 18:17:58 +01:00
<build>
<plugins>
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>
<version>3.4.1</version>
2019-02-27 02:50:18 +01:00
<executions>
<execution>
2019-04-26 09:37:00 +02:00
<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>
<finalName>${project.name}-${project.version}</finalName>
2019-04-26 09:37:00 +02:00
<shadedArtifactAttached>false</shadedArtifactAttached>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<minimizeJar>true</minimizeJar>
2021-12-02 18:17:58 +01:00
<relocations>
<relocation>
<pattern>com.craftaro.core</pattern>
<shadedPattern>com.songoda.ultimatemoderation.core</shadedPattern>
</relocation>
</relocations>
2021-12-02 18:17:58 +01:00
2019-04-26 09:37:00 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
2019-04-26 09:37:00 +02:00
<excludes>
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
2019-04-26 09:37:00 +02:00
</excludes>
</filter>
<filter>
<artifact>com.craftaro:CraftaroCore</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>**/nms/v*/**</include>
</includes>
</filter>
2019-04-26 09:37:00 +02:00
</filters>
</configuration>
2019-02-27 02:50:18 +01:00
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-02-27 02:50:18 +01:00
</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>
2023-07-20 17:58:27 +02:00
<id>craftaro-minecraft-plugins</id>
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
2020-03-16 18:32:37 +01:00
</repository>
2021-12-02 18:17:58 +01:00
<repository>
<id>SpigotMC</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>
2023-07-20 17:58:27 +02:00
<repository>
<id>songoda-public</id>
<url>https://repo.craftaro.com/repository/public/</url>
</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.craftaro</groupId>
<artifactId>CraftaroCore</artifactId>
<version>3.0.0-SNAPSHOT</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>