2013-10-18 11:49:03 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2015-04-15 04:06:16 +00:00
|
|
|
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>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>net.ess3</groupId>
|
2015-07-29 21:22:10 +00:00
|
|
|
<artifactId>EssentialsXParent</artifactId>
|
2020-08-23 16:18:31 +00:00
|
|
|
<version>2.18.1</version>
|
2015-04-15 04:06:16 +00:00
|
|
|
</parent>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-24 20:32:50 +00:00
|
|
|
<artifactId>EssentialsX</artifactId>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2014-04-06 14:50:18 +00:00
|
|
|
<build>
|
2018-03-29 03:00:19 +00:00
|
|
|
<finalName>EssentialsX-${full.version}</finalName>
|
2014-04-06 14:50:18 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-01-05 18:42:09 +00:00
|
|
|
<version>3.8.0</version>
|
2014-04-06 14:50:18 +00:00
|
|
|
<configuration>
|
2015-04-20 19:33:36 +00:00
|
|
|
<showDeprecation>false</showDeprecation>
|
2014-04-06 14:50:18 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-06-17 14:25:46 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2019-01-05 18:42:09 +00:00
|
|
|
<version>3.2.1</version>
|
2015-06-17 14:25:46 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2019-01-05 18:42:09 +00:00
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2019-02-20 12:25:05 +00:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>io.papermc.lib</pattern>
|
|
|
|
<shadedPattern>com.earth2me.essentials.paperlib</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2019-01-05 18:42:09 +00:00
|
|
|
</configuration>
|
2015-06-17 14:25:46 +00:00
|
|
|
</plugin>
|
2014-04-06 14:50:18 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-06-17 14:25:46 +00:00
|
|
|
|
2014-04-06 14:50:18 +00:00
|
|
|
<dependencies>
|
2015-04-15 04:06:16 +00:00
|
|
|
<dependency>
|
2019-12-16 14:23:00 +00:00
|
|
|
<groupId>com.github.milkbowl</groupId>
|
2019-02-20 11:28:20 +00:00
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
2020-06-27 19:17:35 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-06-17 14:25:46 +00:00
|
|
|
<scope>provided</scope>
|
2015-04-15 04:06:16 +00:00
|
|
|
</dependency>
|
2020-06-03 20:36:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.luckperms</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>5.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-02-20 12:25:05 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
2020-10-03 19:29:43 +00:00
|
|
|
<version>1.0.6-SNAPSHOT</version>
|
2019-02-20 12:25:05 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-06-17 14:25:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2020-06-24 21:00:59 +00:00
|
|
|
<artifactId>BaseProviders</artifactId>
|
2020-08-23 16:18:31 +00:00
|
|
|
<version>2.18.1</version>
|
2015-06-17 14:25:46 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2020-06-24 21:00:59 +00:00
|
|
|
<artifactId>NMSReflectionProvider</artifactId>
|
2020-08-23 16:18:31 +00:00
|
|
|
<version>2.18.1</version>
|
2020-06-27 19:17:35 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-06-17 14:25:46 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2020-06-24 21:00:59 +00:00
|
|
|
<artifactId>PaperProvider</artifactId>
|
2020-08-23 16:18:31 +00:00
|
|
|
<version>2.18.1</version>
|
2020-06-24 21:00:59 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-08-08 14:42:29 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-06-27 19:17:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
<artifactId>1_8Provider</artifactId>
|
2020-08-23 16:18:31 +00:00
|
|
|
<version>2.18.1</version>
|
2020-06-27 19:17:35 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
<scope>compile</scope>
|
2020-08-14 04:39:44 +00:00
|
|
|
</dependency>
|
2015-04-15 04:06:16 +00:00
|
|
|
</dependencies>
|
2020-08-14 04:39:44 +00:00
|
|
|
</project>
|