mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
![DoNotSpamPls](/assets/img/avatar_default.png)
* Remove outdated permission plugin handlers, minor test fixes * Re-add PermissionEX handler * Use PaperLib to load chunks async whenever possible * Revert "Use PaperLib to load chunks async whenever possible" This reverts commit db4df6f3cfa82d15d889933711674d02f5d95440. * Use PaperLib to load chunks and teleport players async * Resolve some PR issues * Update PaperLib, return teleport causes * Remove useless PaperLib usage in LocationUtil * Fix FakeServer spacing
125 lines
4.3 KiB
XML
125 lines
4.3 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>EssentialsXParent</artifactId>
|
|
<version>2.16.0</version>
|
|
</parent>
|
|
|
|
<artifactId>EssentialsX</artifactId>
|
|
|
|
<build>
|
|
<finalName>EssentialsX-${full.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<showDeprecation>false</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>io.papermc.lib</pattern>
|
|
<shadedPattern>com.earth2me.essentials.paperlib</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.papermc</groupId>
|
|
<artifactId>paperlib</artifactId>
|
|
<version>1.0.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>NMSProvider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>UpdatedMetaProvider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>1_8_R1Provider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>1_8_R2Provider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>LegacyProvider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>ReflectionProvider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>FlattenedProvider</artifactId>
|
|
<version>2.16.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|