nicko/pom.xml

196 lines
8 KiB
XML
Raw Normal View History

2022-10-20 17:48:16 +02:00
<?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-05-17 13:27:15 +02:00
<groupId>xyz.atnrch</groupId>
2023-04-03 11:03:05 +02:00
<artifactId>nicko</artifactId>
2022-10-20 17:48:16 +02:00
<version>1.0-SNAPSHOT</version>
<name>Nicko</name>
<properties>
2023-04-25 18:34:49 +02:00
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
2023-04-03 11:03:05 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2022-10-20 17:48:16 +02:00
</properties>
2023-04-03 11:03:05 +02:00
<repositories>
<repository>
2023-06-28 13:22:48 +02:00
<id>xenondevs</id>
<url>https://repo.xenondevs.xyz/releases</url>
2023-04-03 11:03:05 +02:00
</repository>
<repository>
2023-06-28 13:22:48 +02:00
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
2023-04-03 11:03:05 +02:00
</repository>
<repository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2023-04-25 18:34:49 +02:00
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>
2023-04-03 11:03:05 +02:00
</repositories>
<dependencies>
<!--
MINECRAFT
-->
<dependency>
2023-08-19 15:13:10 +02:00
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.20.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2023-05-17 13:23:21 +02:00
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>5.0.0-SNAPSHOT</version>
<scope>provided</scope>
2023-05-17 13:23:21 +02:00
</dependency>
2023-04-03 11:03:05 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>xyz.xenondevs.invui</groupId>
<artifactId>invui</artifactId>
2023-08-19 15:13:10 +02:00
<version>1.14</version>
2023-06-28 13:22:48 +02:00
<type>pom</type>
2023-04-03 11:03:05 +02:00
</dependency>
<dependency>
<groupId>net.wesjd</groupId>
<artifactId>anvilgui</artifactId>
2023-06-28 13:22:48 +02:00
<version>1.7.0-SNAPSHOT</version>
2023-04-03 11:03:05 +02:00
</dependency>
<dependency>
<groupId>com.github.seeseemelk</groupId>
2023-08-19 15:13:10 +02:00
<artifactId>MockBukkit-v1.20</artifactId>
<version>3.9.0</version>
2023-04-03 11:03:05 +02:00
<scope>test</scope>
</dependency>
<!--
DATA
-->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
2023-04-03 11:03:05 +02:00
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.1.2</version>
</dependency>
<!-- YAML Reader -->
<dependency>
<groupId>com.github.jsixface</groupId>
<artifactId>yamlconfig</artifactId>
2023-07-26 21:10:53 +02:00
<version>1.2</version>
2023-04-03 11:03:05 +02:00
</dependency>
2023-05-17 13:23:21 +02:00
<!-- Jackson Core -->
2023-04-03 11:03:05 +02:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.15.2</version>
2023-04-03 11:03:05 +02:00
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.15.2</version>
2023-04-03 11:03:05 +02:00
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>4.4.3</version>
2023-04-03 11:03:05 +02:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2023-08-20 16:21:12 +02:00
<version>3.0.0-M9</version>
2023-04-03 11:03:05 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2023-08-19 15:13:10 +02:00
<version>3.5.0</version>
2023-04-03 11:03:05 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>net.wesjd:anvilgui</include>
<include>xyz.xenondevs.invui:*</include>
<include>com.github.jsixface:*</include>
2023-07-14 11:01:35 +02:00
<include>com.fasterxml.jackson.dataformat:*</include>
<include>com.fasterxml.jackson.core:*</include>
<include>org.mariadb.jdbc:*</include>
<include>redis.clients:*</include>
<include>org.apache.commons:commons-pool2</include>
2023-04-03 11:03:05 +02:00
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>net.wesjd.anvilgui</pattern>
<shadedPattern>net.artelnatif.libs.anvilgui</shadedPattern>
</relocation>
<relocation>
<pattern>xyz.xenondevs.invui</pattern>
<shadedPattern>net.artelnatif.libs.invui</shadedPattern>
</relocation>
<relocation>
<pattern>com.github.jsixface</pattern>
<shadedPattern>net.artelnatif.libs.yaml</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml.jackson.dataformat</pattern>
<shadedPattern>net.artelnatif.libs.jackson.yaml</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml.jackson.core</pattern>
<shadedPattern>net.artelnatif.libs.jackson.core</shadedPattern>
</relocation>
<relocation>
<pattern>org.mariadb.jdbc</pattern>
<shadedPattern>net.artelnatif.libs.mariadb</shadedPattern>
</relocation>
2023-07-14 11:01:35 +02:00
<relocation>
<pattern>redis.clients</pattern>
<shadedPattern>net.artelnatif.libs.redis</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.pool2</pattern>
<shadedPattern>net.artelnatif.libs.pool2</shadedPattern>
</relocation>
2023-04-03 11:03:05 +02:00
</relocations>
<!-- Prevents breaking AnvilGUI's VersionWrapper. -->
<minimizeJar>false</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/main/resources/</directory>
</resource>
</resources>
</build>
2022-10-20 17:48:16 +02:00
</project>