99 lines
3.4 KiB
XML
99 lines
3.4 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>LBuddyBoy-Development</artifactId>
|
||
|
<groupId>dev.lbuddyboy</groupId>
|
||
|
<version>1.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>lStaff</artifactId>
|
||
|
<version>1.0</version>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>16</maven.compiler.source>
|
||
|
<maven.compiler.target>16</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<configuration>
|
||
|
<source>16</source>
|
||
|
<target>16</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>
|
||
|
|
||
|
<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/server.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.20</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongo-java-driver</artifactId>
|
||
|
<version>3.12.8</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>dev.samurai</groupId>
|
||
|
<artifactId>HCTeams</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${pom.basedir}/libs/HCTeams-1.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>dev.samurai</groupId>
|
||
|
<artifactId>Flash</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${pom.basedir}/libs/Flash-Bukkit-1.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|