194 lines
8.3 KiB
XML
194 lines
8.3 KiB
XML
<?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>
|
|
|
|
<groupId>me.xginko</groupId>
|
|
<artifactId>VillagerOptimizer</artifactId>
|
|
<version>1.6.2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>VillagerOptimizer</name>
|
|
<description>Combat heavy villager lag by letting players optimize their trading halls.</description>
|
|
<url>https://github.com/xGinko/VillagerOptimizer</url>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.12.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.github.benmanes.caffeine</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.caffeine</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.bstats</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>net.kyori</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.kyori</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>io.github.thatsmusic99.configurationmaster</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.configmaster</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.reflections</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.reflections</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.xseries</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>space.arim.morepaperlib</pattern>
|
|
<shadedPattern>me.xginko.villageroptimizer.libs.morepaperlib</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
|
|
<exclude>com/cryptomorin/xseries/NMSExtras*</exclude>
|
|
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
|
<exclude>com/cryptomorin/xseries/SkullCacheListener*</exclude>
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
<exclude>META-INF/LICENSE</exclude>
|
|
<exclude>META-INF/LICENSE.txt</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>papermc-repo</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sonatype</id>
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>configmaster-repo</id>
|
|
<url>https://ci.pluginwiki.us/plugin/repository/everything/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>morepaperlib-repo</id>
|
|
<url>https://mvn-repo.arim.space/lesser-gpl3/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.papermc.paper</groupId>
|
|
<artifactId>paper-api</artifactId>
|
|
<version>1.21-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>2.23.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.10.2</version>
|
|
</dependency>
|
|
<!-- Adventure API for easier cross-version compatibility -->
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
|
<version>4.3.3</version>
|
|
</dependency>
|
|
<!-- Adventure MiniMessage for parsing fancy tags in lang files -->
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-minimessage</artifactId>
|
|
<version>4.17.0</version>
|
|
</dependency>
|
|
<!-- Needed to actually display colors in ComponentLogger -->
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-ansi</artifactId>
|
|
<version>4.17.0</version>
|
|
</dependency>
|
|
<!-- Adventure ComponentLogger for colorful slf4j logging -->
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-logger-slf4j</artifactId>
|
|
<version>4.17.0</version>
|
|
</dependency>
|
|
<!-- Bukkit bStats -->
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
<!-- Enhanced config.yml manager -->
|
|
<dependency>
|
|
<groupId>com.github.thatsmusic99</groupId>
|
|
<artifactId>ConfigurationMaster-API</artifactId>
|
|
<version>v2.0.0-rc.1</version>
|
|
</dependency>
|
|
<!-- Fast Caching (Needs to be 2.9.3 for java 8 support) -->
|
|
<dependency>
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
<artifactId>caffeine</artifactId>
|
|
<version>2.9.3</version>
|
|
</dependency>
|
|
<!-- Folia Support -->
|
|
<dependency>
|
|
<groupId>space.arim.morepaperlib</groupId>
|
|
<artifactId>morepaperlib</artifactId>
|
|
<version>0.4.3</version>
|
|
</dependency>
|
|
<!-- Cross-Version Support -->
|
|
<dependency>
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
<artifactId>XSeries</artifactId>
|
|
<version>11.2.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|