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-11-07 23:05:44 +01:00
|
|
|
<version>4.0-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-04-15 20:01:39 +02:00
|
|
|
<finalName>LuckPerms-Bukkit-${full.version}</finalName>
|
2016-05-22 02:57:10 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-03-12 15:19:22 +01:00
|
|
|
<version>${compiler.version}</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>
|
2017-03-12 15:19:22 +01:00
|
|
|
<version>${shade.version}</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>
|
2018-01-14 00:27:55 +01:00
|
|
|
<!-- shaded dependencies -->
|
2016-12-07 22:08:30 +01:00
|
|
|
<relocation>
|
2017-06-11 15:46:56 +02:00
|
|
|
<pattern>net.kyori.text</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.text</shadedPattern>
|
2016-12-07 22:08:30 +01:00
|
|
|
</relocation>
|
2018-01-14 00:27:55 +01:00
|
|
|
|
|
|
|
<!-- relocated dependencies -->
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.github.benmanes.caffeine</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.caffeine</shadedPattern>
|
|
|
|
</relocation>
|
2018-01-30 01:08:00 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>okio</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.okio</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>okhttp3</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.okhttp3</shadedPattern>
|
|
|
|
</relocation>
|
2018-01-14 00:27:55 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.mariadb.jdbc</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.mariadb</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.mysql</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.mysql</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.postgresql</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.postgresql</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer.hikari</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.hikari</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.mongodb</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.mongodb</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bson</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.bson</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2018-01-19 20:27:08 +01:00
|
|
|
<pattern>redis.clients.jedis</pattern>
|
2018-01-14 00:27:55 +01:00
|
|
|
<shadedPattern>me.lucko.luckperms.lib.jedis</shadedPattern>
|
|
|
|
</relocation>
|
2018-01-19 20:27:08 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.apache.commons.pool2</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.commonspool2</shadedPattern>
|
|
|
|
</relocation>
|
2018-01-14 00:27:55 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>ninja.leaping.configurate</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.configurate</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.typesafe.config</pattern>
|
|
|
|
<shadedPattern>me.lucko.luckperms.lib.hocon</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>
|
2018-01-08 21:01:02 +01:00
|
|
|
<!-- common -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
|
|
|
<artifactId>luckperms-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- jsr305 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-02-04 21:50:35 +01:00
|
|
|
<!-- caffeine -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
<version>2.6.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-02-16 14:19:43 +01:00
|
|
|
<!-- HikariCP -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>2.7.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-02-04 21:50:35 +01:00
|
|
|
|
2018-01-08 21:01:02 +01:00
|
|
|
<!-- Spigot -->
|
2016-05-22 02:57:10 +02:00
|
|
|
<dependency>
|
2016-12-07 22:08:30 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2017-11-10 21:16:44 +01:00
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
2016-05-22 02:57:10 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-01-08 21:01:02 +01:00
|
|
|
|
|
|
|
|
2016-05-22 02:57:10 +02:00
|
|
|
<!-- 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>
|
2017-04-15 20:01:39 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-05-22 02:57:10 +02:00
|
|
|
</dependency>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- LilyPad -->
|
2017-01-22 22:46:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>lilypad.client.connect</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- zPermissions -->
|
2016-10-23 21:42:25 +02:00
|
|
|
<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>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- PermissionsEx -->
|
2016-10-23 21:42:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ru.tehkode</groupId>
|
|
|
|
<artifactId>PermissionsEx</artifactId>
|
2017-04-15 20:53:12 +02:00
|
|
|
<version>1.23.5</version>
|
2016-10-23 21:42:25 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.gravitydevelopment.updater</groupId>
|
|
|
|
<artifactId>updater</artifactId>
|
|
|
|
</exclusion>
|
2017-04-15 20:01:39 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>AccountsClient</artifactId>
|
|
|
|
</exclusion>
|
2016-10-23 21:42:25 +02:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- PowerfulPerms -->
|
2016-10-23 21:42:25 +02:00
|
|
|
<dependency>
|
2017-12-29 23:43:32 +01:00
|
|
|
<groupId>com.github.gustav9797</groupId>
|
2016-10-23 21:42:25 +02:00
|
|
|
<artifactId>PowerfulPermsAPI</artifactId>
|
2017-12-29 23:43:32 +01:00
|
|
|
<version>4.5.2</version>
|
2016-10-23 21:42:25 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- GroupManager -->
|
2016-10-23 21:42:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.anjocaido</groupId>
|
|
|
|
<artifactId>GroupManager</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-04-15 20:01:39 +02:00
|
|
|
<!-- bPermissions -->
|
2016-10-23 21:42:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.bananaco</groupId>
|
|
|
|
<artifactId>bpermissions-api</artifactId>
|
|
|
|
<version>2.12</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-01-01 22:11:50 +01:00
|
|
|
<!-- PermissionsBukkit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.platymuus</groupId>
|
|
|
|
<artifactId>bukkit-permissions</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
2018-01-07 19:40:02 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.mcstats.bukkit</groupId>
|
|
|
|
<artifactId>metrics</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-01-01 22:11:50 +01:00
|
|
|
</dependency>
|
2016-05-22 02:57:10 +02:00
|
|
|
</dependencies>
|
2016-07-26 03:21:51 +02:00
|
|
|
</project>
|