139 lines
4.8 KiB
XML
139 lines
4.8 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>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.solexgames</groupId>
|
||
|
<artifactId>Scandium</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>Bukkit</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<!--suppress UnresolvedMavenProperty -->
|
||
|
<finalName>Scandium</finalName>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>jitpack.io</id>
|
||
|
<url>https://jitpack.io</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>sonatype</id>
|
||
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>bintray-jcenter</id>
|
||
|
<url>https://jcenter.bintray.com</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>placeholderapi</id>
|
||
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>papermc</id>
|
||
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- External APIs/Helpers -->
|
||
|
<dependency>
|
||
|
<groupId>com.comphenix.protocol</groupId>
|
||
|
<artifactId>ProtocolLib</artifactId>
|
||
|
<version>4.6.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/ProtocolLib.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.solexgames.lib</groupId>
|
||
|
<artifactId>commons-bukkit</artifactId>
|
||
|
<version>devbuild</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/commonslibs-bukkit.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Provided APIs -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.12.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.papermc</groupId>
|
||
|
<artifactId>paperlib</artifactId>
|
||
|
<version>1.0.6</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<!-- Chat related APIs -->
|
||
|
<dependency>
|
||
|
<groupId>me.clip</groupId>
|
||
|
<artifactId>placeholderapi</artifactId>
|
||
|
<version>2.10.9</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Minecraft Client APIs -->
|
||
|
<dependency>
|
||
|
<groupId>com.lunarclient</groupId>
|
||
|
<artifactId>bukkitapi</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/LunarClientAPI.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Spigot maven dependencies -->
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-1_8-api</artifactId>
|
||
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/Spigot_1_8.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-19-api</artifactId>
|
||
|
<version>1.9-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/Spigot_1_9.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-1_7-api</artifactId>
|
||
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/Spigot_1_7.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-1_12-api</artifactId>
|
||
|
<version>1.12.1-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/Spigot_1_12.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-1_16-api</artifactId>
|
||
|
<version>1.16.5-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${basedir}/lib/Spigot_1_16.jar</systemPath>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|