60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
<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
|
||
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>net.viper.bungee</groupId>
|
||
<artifactId>StatusAPI</artifactId>
|
||
<version>4.1.0</version>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>StatusAPI</name>
|
||
<description>BungeeCord Status API Plugin</description>
|
||
|
||
<properties>
|
||
<maven.compiler.source>8</maven.compiler.source>
|
||
<maven.compiler.target>8</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- BungeeCord API – direkt aus lokalem JAR, kein Repository noetig -->
|
||
<dependency>
|
||
<groupId>net.md-5</groupId>
|
||
<artifactId>bungeecord-api</artifactId>
|
||
<version>1.20</version>
|
||
<scope>system</scope>
|
||
<systemPath>C:\Users\Viper\Downloads\BungeeCord.jar</systemPath>
|
||
</dependency>
|
||
|
||
<!-- LuckPerms API (Optional) -->
|
||
<dependency>
|
||
<groupId>net.luckperms</groupId>
|
||
<artifactId>api</artifactId>
|
||
<version>5.4</version>
|
||
<scope>provided</scope>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<!-- HikariCP Connection Pool -->
|
||
<dependency>
|
||
<groupId>com.zaxxer</groupId>
|
||
<artifactId>HikariCP</artifactId>
|
||
<version>5.1.0</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>StatusAPI</finalName>
|
||
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/resources</directory>
|
||
<filtering>false</filtering>
|
||
</resource>
|
||
</resources>
|
||
</build>
|
||
|
||
</project> |