UltimateModeration/pom.xml

157 lines
6.0 KiB
XML
Raw Permalink 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>
2023-08-02 19:00:34 +02:00
<groupId>com.craftaro</groupId>
2019-02-27 02:50:18 +01:00
<artifactId>UltimateModeration</artifactId>
2024-06-01 18:10:17 +02:00
<version>3.0.3</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>
2024-06-01 18:10:05 +02:00
<version>3.5.3</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>
2023-08-02 19:00:34 +02:00
<shadedPattern>com.craftaro.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>
2024-06-01 18:09:57 +02:00
<include>**/third_party/net/kyori/**</include>
</includes>
<excludes>
<exclude>**/third_party/org/apache/**</exclude>
<exclude>**/third_party/com/zaxxer/**</exclude>
<exclude>**/third_party/org/jooq/**</exclude>
<exclude>**/third_party/org/mariadb/**</exclude>
<exclude>**/third_party/com/h2database/**</exclude>
<exclude>**/third_party/org/h2/**</exclude>
<exclude>**/third_party/com/cryptomorin/**</exclude>
<exclude>**/third_party/org/reactivestreams/**</exclude>
</excludes>
</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>
2024-06-01 18:09:57 +02:00
<version>3.0.7-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>