mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-05 10:29:36 +01:00
175 lines
6.3 KiB
XML
175 lines
6.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>luckperms</artifactId>
|
|
<groupId>me.lucko.luckperms</groupId>
|
|
<version>4.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>luckperms-bukkit</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<finalName>LuckPerms-Bukkit-${full.version}</finalName>
|
|
<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>
|
|
<version>${compiler.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>${shade.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<minimizeJar>false</minimizeJar>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>net.kyori.text</pattern>
|
|
<shadedPattern>me.lucko.luckperms.lib.text</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- Spigot API -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Vault -->
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.6</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- LuckPerms Common -->
|
|
<dependency>
|
|
<groupId>me.lucko.luckperms</groupId>
|
|
<artifactId>luckperms-common</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- LuckPerms API -->
|
|
<dependency>
|
|
<groupId>me.lucko.luckperms</groupId>
|
|
<artifactId>luckperms-api</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- LilyPad -->
|
|
<dependency>
|
|
<groupId>lilypad.client.connect</groupId>
|
|
<artifactId>api</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- ************** Migration Plugins ************** -->
|
|
<!-- zPermissions -->
|
|
<dependency>
|
|
<groupId>org.tyrannyofheaven.bukkit</groupId>
|
|
<artifactId>zPermissions</artifactId>
|
|
<version>1.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- PermissionsEx -->
|
|
<dependency>
|
|
<groupId>ru.tehkode</groupId>
|
|
<artifactId>PermissionsEx</artifactId>
|
|
<version>1.23.5</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.gravitydevelopment.updater</groupId>
|
|
<artifactId>updater</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>commons-dbcp</groupId>
|
|
<artifactId>commons-dbcp</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.mojang</groupId>
|
|
<artifactId>AccountsClient</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- PowerfulPerms -->
|
|
<dependency>
|
|
<groupId>com.github.cheesesoftware</groupId>
|
|
<artifactId>PowerfulPermsAPI</artifactId>
|
|
<version>1.4.0</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- GroupManager -->
|
|
<dependency>
|
|
<groupId>org.anjocaido</groupId>
|
|
<artifactId>GroupManager</artifactId>
|
|
<version>1.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- bPermissions -->
|
|
<dependency>
|
|
<groupId>de.bananaco</groupId>
|
|
<artifactId>bpermissions-api</artifactId>
|
|
<version>2.12</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|