<?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/maven-v4_0_0.xsd"> <parent> <artifactId>nicko-parent</artifactId> <groupId>net.artelnatif</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>core</artifactId> <version>1.0-SNAPSHOT</version> <build> <resources> <resource> <filtering>true</filtering> <directory>${basedir}/src/main/resources/</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.1-SNAPSHOT</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>net.wesjd:anvilgui</include> <include>de.studiocode.invui:*</include> <include>com.github.jsixface:*</include> <include>com.fasterxml.jackson.dataformat</include> <include>com.fasterxml.jackson.core</include> <include>org.mariadb.jdbc</include> </includes> </artifactSet> <filters> <filter> <artifact>net.artelnatif:*</artifact> <excludes> <exclude>META-INF/*.MF</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>net.wesjd.anvilgui</pattern> <shadedPattern>net.artelnatif.libs.anvilgui</shadedPattern> </relocation> <relocation> <pattern>de.studiocode.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> </relocations> <minimizeJar>false</minimizeJar> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>papermc</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>xenondevs</id> <url>https://repo.xenondevs.xyz/releases</url> </repository> <repository> <id>bungeecord-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/groups/public/</url> </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> </repositories> <dependencies> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> <version>2.11.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.19.3-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.19-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.seeseemelk</groupId> <artifactId>MockBukkit-v1.19</artifactId> <version>2.29.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>paper-api</artifactId> <groupId>io.papermc.paper</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>hamcrest-library</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>adventure-platform-bungeecord</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>maven-resolver-provider</artifactId> <groupId>org.apache.maven</groupId> </exclusion> <exclusion> <artifactId>maven-resolver-connector-basic</artifactId> <groupId>org.apache.maven.resolver</groupId> </exclusion> <exclusion> <artifactId>maven-resolver-transport-http</artifactId> <groupId>org.apache.maven.resolver</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>