javaee-plugins/dUHC/pom.xml

151 lines
5.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>me.javaee.duki</groupId>
<artifactId>dUHC</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${artifactId}-${version}</finalName>
<artifactSet>
<includes>
<include>org.mongodb:mongo-java-driver</include>
<include>com.google.code.gson:gson</include>
<include>redis.clients:jedis</include>
<include>org.apache.commons:commons-pool2</include>
<include>org.twitter4j:twitter4j-core</include>
</includes>
</artifactSet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.github.paperspigot</groupId>
<artifactId>paperspigot-api</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.github.paperspigot</groupId>
<artifactId>paperspigot</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ps</groupId>
<artifactId>ps</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/ps.jar</systemPath>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
</dependency>
<dependency>
<groupId>worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>6.1.1-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${basedir}/libs/we.jar</systemPath>
</dependency>
<dependency>
<groupId>worldborder</groupId>
<artifactId>wb</artifactId>
<version>0.4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.4.2</version>
</dependency>
<dependency>
<groupId>hd</groupId>
<artifactId>hd</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/hd.jar</systemPath>
</dependency>
<dependency>
<groupId>pl</groupId>
<artifactId>pl</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/pl.jar</systemPath>
</dependency>
<dependency>
<groupId>litebans</groupId>
<artifactId>api</artifactId>
<version>0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.6</version>
</dependency>
<dependency>
<groupId>dec</groupId>
<artifactId>dec</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/dec.jar</systemPath>
</dependency>
<dependency>
<groupId>BossBarAPI_v2.4.1</groupId>
<artifactId>BossBarAPI_v2.4.1</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/BossBarAPI_v2.4.1.jar</systemPath>
</dependency>
<dependency>
<groupId>me.lucko.luckperms</groupId>
<artifactId>luckperms-api</artifactId>
<version>4.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>