151 lines
4.9 KiB
XML
151 lines
4.9 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>org.hcrival.practice</groupId>
|
|
<artifactId>practice</artifactId>
|
|
<version>1.2</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- PaperSpigot -->
|
|
<dependency>
|
|
<groupId>org.papermc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/PaperSpigot-1.8.8-R0.1-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!-- KnockbackController -->
|
|
<dependency>
|
|
<groupId>me.elb1to.practice.controller</groupId>
|
|
<artifactId>KnockbackController</artifactId>
|
|
<version>1.0</version>
|
|
<systemPath>${project.basedir}/libs/KnockbackController.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>
|
|
|
|
<!-- FrozedTablist -->
|
|
<dependency>
|
|
<groupId>club.frozed.tablist</groupId>
|
|
<artifactId>FrozedTablist</artifactId>
|
|
<version>3.5-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.evilblock.cubed</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- LAMP Command API (Commons) -->
|
|
<dependency>
|
|
<groupId>com.github.Revxrsal.Lamp</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>3.0.71</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- LAMP Command API (Bukkit) -->
|
|
<dependency>
|
|
<groupId>com.github.Revxrsal.Lamp</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>3.0.71</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- WorldEdit -->
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldedit</artifactId>
|
|
<version>6.1</version>
|
|
<systemPath>${project.basedir}/libs/WorldEdit-6.1.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>
|
|
|
|
<!-- FastAsyncWorldEdit -->
|
|
<dependency>
|
|
<groupId>com.boydti</groupId>
|
|
<artifactId>fawe-api</artifactId>
|
|
<version>1.8</version>
|
|
<systemPath>${project.basedir}/libs/FastAsyncWorldEdit.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>
|
|
|
|
<!-- PlaceholderAPI -->
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Google Gson -->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- MongoDB Java Driver -->
|
|
<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
<version>3.10.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</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>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |