LuckPerms/bungee/pom.xml

138 lines
5.0 KiB
XML
Raw Normal View History

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-bungee</artifactId>
<packaging>jar</packaging>
<build>
<defaultGoal>clean package</defaultGoal>
2017-04-15 20:01:39 +02:00
<finalName>LuckPerms-Bungee-${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>
<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>
<version>${shade.version}</version>
2016-05-22 02:57:10 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
2016-08-06 12:25:23 +02:00
<relocations>
<relocation>
<pattern>net.kyori.text</pattern>
<shadedPattern>me.lucko.luckperms.lib.text</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>
2017-04-15 20:01:39 +02:00
<!-- BungeeCord -->
2016-05-22 02:57:10 +02:00
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
2017-07-07 15:48:42 +02:00
<version>1.12-SNAPSHOT</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>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- RedisBungee -->
<dependency>
<groupId>com.imaginarycode.minecraft</groupId>
<artifactId>RedisBungee</artifactId>
<version>0.4</version>
<scope>provided</scope>
</dependency>
2017-04-15 20:01:39 +02:00
<!-- ************** Migration Plugins ************** -->
<!-- BungeePerms -->
2016-10-23 21:42:25 +02:00
<dependency>
<groupId>net.alpenblock</groupId>
<artifactId>BungeePerms</artifactId>
2017-04-15 20:01:39 +02:00
<version>3.0</version>
2016-10-23 21:42:25 +02:00
<scope>provided</scope>
2017-04-15 20:01:39 +02:00
<exclusions>
<exclusion>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclusion>
<exclusion>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
</exclusion>
<exclusion>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
</exclusion>
<exclusion>
<groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId>
</exclusion>
2017-09-10 22:45:47 +02:00
<exclusion>
<groupId>net.ess3</groupId>
<artifactId>EssentialsX</artifactId>
</exclusion>
2017-04-15 20:01:39 +02:00
</exclusions>
2016-10-23 21:42:25 +02:00
</dependency>
2016-05-22 02:57:10 +02:00
</dependencies>
2016-07-26 03:21:51 +02:00
</project>