LuckPerms/bungee/pom.xml

125 lines
4.9 KiB
XML
Raw Normal View History

2016-05-22 02:57:10 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2016-08-06 14:36:55 +02:00
<!--
~ Copyright (c) 2016 Lucko (Luck) <luck@lucko.me>
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in all
~ copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
~ SOFTWARE.
-->
2016-05-22 02:57:10 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<parent>
<artifactId>luckperms</artifactId>
2016-07-26 03:21:51 +02:00
<groupId>me.lucko.luckperms</groupId>
2016-08-05 12:58:27 +02:00
<version>1.5</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>
2016-07-25 23:08:08 +02:00
<finalName>LuckPermsBungee</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>
</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>
<minimizeJar>true</minimizeJar>
2016-08-06 12:25:23 +02:00
<relocations>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>me.lucko.luckperms.lib.slf4j</shadedPattern>
</relocation>
<relocation>
<pattern>com.zaxxer.hikari</pattern>
<shadedPattern>me.lucko.luckperms.lib.hikari</shadedPattern>
</relocation>
</relocations>
2016-05-22 02:57:10 +02:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- BungeeCord API -->
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.9-SNAPSHOT</version>
<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>
<!-- HikariCP -->
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>2.4.7</version>
<scope>compile</scope>
</dependency>
<!-- slf4j library -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.9</version>
<scope>compile</scope>
</dependency>
2016-05-22 02:57:10 +02:00
</dependencies>
2016-07-26 03:21:51 +02:00
</project>