javaee-plugins/uhcmeetup/pom.xml

117 lines
4.3 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.meetup</groupId>
<artifactId>UHCMeetup</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>
</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>worldborder</groupId>
<artifactId>worldborder</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/worldborder-1.0-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>net.techcable.tacospigot</groupId>
<artifactId>api</artifactId>
<version>1.8.8-R0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.techcable.tacospigot</groupId>
<artifactId>server</artifactId>
<version>1.8.8-R0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</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>pl</groupId>
<artifactId>pl</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/pl.jar</systemPath>
</dependency>
<dependency>
<groupId>ha</groupId>
<artifactId>ha</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/ha.jar</systemPath>
</dependency>
<dependency>
<groupId>dec</groupId>
<artifactId>dec</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/dec.jar</systemPath>
</dependency>
<dependency>
<groupId>nm.4.1</groupId>
<artifactId>nm.4.1</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/nm.jar</systemPath>
</dependency>
</dependencies>
</project>