121 lines
4.3 KiB
XML
121 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>
|
||
|
|
||
|
<parent>
|
||
|
<artifactId>Bunkers</artifactId>
|
||
|
<groupId>dev.lbuddyboy</groupId>
|
||
|
<version>1.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.steelpvp</groupId>
|
||
|
<artifactId>SteelBunkers</artifactId>
|
||
|
<version>1.0</version>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<maven.compiler.source>16</maven.compiler.source>
|
||
|
<maven.compiler.target>16</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.5.1</version>
|
||
|
<configuration>
|
||
|
<source>16</source>
|
||
|
<target>16</target>
|
||
|
<annotationProcessorPaths>
|
||
|
<path>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.20</version>
|
||
|
</path>
|
||
|
</annotationProcessorPaths>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>aikar</id>
|
||
|
<url>https://repo.aikar.co/content/groups/aikar/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.19.4-R0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>paperspigot</groupId>
|
||
|
<artifactId>craftbukkit</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${pom.basedir}/libs/craftbukkit-1.19.4-R0.1-SNAPSHOT.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>co.aikar</groupId>
|
||
|
<artifactId>acf-paper</artifactId> <!-- Don't forget to replace this -->
|
||
|
<version>LATEST</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.6</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.20</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains</groupId>
|
||
|
<artifactId>annotations</artifactId>
|
||
|
<version>23.0.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>dev.lbuddyboy</groupId>
|
||
|
<artifactId>BunkersCommunicator</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/libs/BunkersCommunicator-1.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.12.0</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.null321-jared</groupId>
|
||
|
<artifactId>rollbackcore</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${pom.basedir}/libs/RollbackCore-3.6.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.mojang</groupId>
|
||
|
<artifactId>authlib</artifactId>
|
||
|
<version>1.11</version>
|
||
|
</dependency>
|
||
|
<!-- Misc. Jars -->
|
||
|
<dependency>
|
||
|
<groupId>gg.lunar</groupId>
|
||
|
<artifactId>LAPI</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/libs/bukkitapi.jar</systemPath>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|