147 lines
4.7 KiB
XML
147 lines
4.7 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/maven-v4_0_0.xsd">
|
||
|
<parent>
|
||
|
<artifactId>prime-parent</artifactId>
|
||
|
<groupId>dev.apposed</groupId>
|
||
|
<version>1.0-BETA</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>prime-spigot</artifactId>
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<filtering>true</filtering>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>plugin.yml</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<excludes>
|
||
|
<exclude>plugin.yml</exclude>
|
||
|
</excludes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<artifactSet>
|
||
|
<includes>
|
||
|
<include>com.google.guava:*</include>
|
||
|
<include>redis.clients:*</include>
|
||
|
<include>org.mongodb:*</include>
|
||
|
<include>org.apache.commons:*</include>
|
||
|
</includes>
|
||
|
</artifactSet>
|
||
|
<relocations>
|
||
|
<relocation>
|
||
|
<pattern>org.apache.commons.pool2</pattern>
|
||
|
<shadedPattern>org.shaded.apache.commons.pool2</shadedPattern>
|
||
|
</relocation>
|
||
|
<relocation>
|
||
|
<pattern>org.mongodb</pattern>
|
||
|
<shadedPattern>org.shaded.mongodb</shadedPattern>
|
||
|
</relocation>
|
||
|
<relocation>
|
||
|
<pattern>com.google.code.gson</pattern>
|
||
|
<shadedPattern>com.shaded.google.code.gson</shadedPattern>
|
||
|
</relocation>
|
||
|
<relocation>
|
||
|
<pattern>redis.clients.jedis</pattern>
|
||
|
<shadedPattern>redis.shaded.clients.jedis</shadedPattern>
|
||
|
</relocation>
|
||
|
<relocation>
|
||
|
<pattern>com.google.common</pattern>
|
||
|
<shadedPattern>com.shaded.google.common</shadedPattern>
|
||
|
</relocation>
|
||
|
</relocations>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>jitpack.io</id>
|
||
|
<url>https://jitpack.io</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>aikar-repo</id>
|
||
|
<url>https://repo.aikar.co/nexus/content/repositories/aikar/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>ebean</artifactId>
|
||
|
<groupId>org.avaje</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>bungeecord-chat</artifactId>
|
||
|
<groupId>net.md-5</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
<version>4.9.3</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.elevatemc</groupId>
|
||
|
<artifactId>eLib</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/eLib-1.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.elevatemc</groupId>
|
||
|
<artifactId>spigot-server</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/espigot.jar</systemPath>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|