2016-05-22 02:57:10 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-12-02 21:20:24 +01:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2016-05-22 02:57:10 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>luckperms</artifactId>
|
2016-07-26 03:21:51 +02:00
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
2017-01-16 21:01:41 +01:00
|
|
|
<version>2.17-SNAPSHOT</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>luckperms-bukkit</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
2017-01-26 14:55:06 +01:00
|
|
|
<finalName>LuckPerms-Bukkit-${release.version}.${patch.version}</finalName>
|
2016-05-22 02:57:10 +02:00
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
2017-01-19 20:03:59 +01:00
|
|
|
<resource>
|
|
|
|
<directory>../</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>LICENSE.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2016-05-22 02:57:10 +02:00
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-07-15 12:56:28 +02:00
|
|
|
<version>3.5.1</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2016-07-15 12:56:28 +02:00
|
|
|
<version>2.4.3</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2016-08-19 19:21:16 +02:00
|
|
|
<minimizeJar>false</minimizeJar>
|
2017-01-26 14:55:06 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2016-08-06 12:25:23 +02:00
|
|
|
<relocations>
|
2016-12-07 22:08:30 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>io.github.mkremins.fanciful</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.fanciful</shadedPattern>
|
|
|
|
</relocation>
|
2016-08-06 12:25:23 +02:00
|
|
|
</relocations>
|
2016-05-22 02:57:10 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- BukkitAPI -->
|
|
|
|
<dependency>
|
2016-12-07 22:08:30 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2016-05-22 02:57:10 +02:00
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Vault -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2016-08-02 11:17:52 +02:00
|
|
|
<version>1.6</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- LuckPerms Common -->
|
|
|
|
<dependency>
|
2016-07-26 03:21:51 +02:00
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
2016-05-22 02:57:10 +02:00
|
|
|
<artifactId>luckperms-common</artifactId>
|
2016-08-06 12:25:23 +02:00
|
|
|
<version>${project.version}</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-21 22:40:24 +02:00
|
|
|
<!-- LuckPerms API -->
|
|
|
|
<dependency>
|
2016-07-26 03:21:51 +02:00
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
2016-07-21 22:40:24 +02:00
|
|
|
<artifactId>luckperms-api</artifactId>
|
2016-08-06 12:25:23 +02:00
|
|
|
<version>${project.version}</version>
|
2016-07-21 22:40:24 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-01-22 22:46:22 +01:00
|
|
|
<!-- LilyPad - used as a messaging service -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>lilypad.client.connect</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-12-22 22:17:02 +01:00
|
|
|
<!-- HikariCP - needed as source -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-08-15 16:09:16 +02:00
|
|
|
<!-- Lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.16.10</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-10-23 21:42:25 +02:00
|
|
|
<!-- **************Migration Plugins************** -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.tyrannyofheaven.bukkit</groupId>
|
|
|
|
<artifactId>zPermissions</artifactId>
|
2016-12-07 23:16:01 +01:00
|
|
|
<version>1.3</version>
|
2016-10-23 21:42:25 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ru.tehkode</groupId>
|
|
|
|
<artifactId>PermissionsEx</artifactId>
|
|
|
|
<version>1.23</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.gravitydevelopment.updater</groupId>
|
|
|
|
<artifactId>updater</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.cheesesoftware</groupId>
|
|
|
|
<artifactId>PowerfulPermsAPI</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.anjocaido</groupId>
|
|
|
|
<artifactId>GroupManager</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.bananaco</groupId>
|
|
|
|
<artifactId>bpermissions-api</artifactId>
|
|
|
|
<version>2.12</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-05-22 02:57:10 +02:00
|
|
|
</dependencies>
|
2016-07-26 03:21:51 +02:00
|
|
|
</project>
|