156 lines
5.3 KiB
XML
156 lines
5.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.devkevin.landcore</groupId>
|
||
|
<artifactId>LandCore</artifactId>
|
||
|
<version>1.3-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>destroystokyo-releases</id>
|
||
|
<url>https://repo.destroystokyo.com/repository/maven-releases/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>destroystokyo-snapshots</id>
|
||
|
<url>https://repo.destroystokyo.com/repository/maven-snapshots/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Spigot 1.8.8 -->
|
||
|
<dependency>
|
||
|
<groupId>club.inverted</groupId>
|
||
|
<artifactId>inverted-spigot</artifactId>
|
||
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/Carbon-Server-1.8.8-R0.1-SNAPSHOT.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- MongoDB Java Driver -->
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongo-java-driver</artifactId>
|
||
|
<version>3.12.11</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
<version>4.5.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- NickAPI -->
|
||
|
<dependency>
|
||
|
<groupId>xyz.haoshoku.nick</groupId>
|
||
|
<artifactId>nickapi</artifactId>
|
||
|
<version>5.0.2-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/NickAPI-v6.5.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Lombok -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.24</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>redis.clients</groupId>
|
||
|
<artifactId>jedis</artifactId>
|
||
|
<version>2.9.0</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.3.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
<version>1.1.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- ViaVersion-3.2.1 API -->
|
||
|
<dependency>
|
||
|
<groupId>ViaVersion-3.2.1</groupId>
|
||
|
<artifactId>ViaVersion-3.2.1</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/ViaVersion-3.2.1.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- ProtocolLib -->
|
||
|
<dependency>
|
||
|
<groupId>com.comphenix.protocol</groupId>
|
||
|
<artifactId>ProtocolLib</artifactId>
|
||
|
<version>yes</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/ProtocolLib.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.4</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</build>
|
||
|
</project>
|