Upload via Git Manager GUI
This commit is contained in:
84
pom.xml
84
pom.xml
@@ -1,60 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>net.viper.bungee</groupId>
|
<groupId>net.viper</groupId>
|
||||||
<artifactId>StatusAPI</artifactId>
|
<artifactId>StatusAPIBridge</artifactId>
|
||||||
<version>4.1.0</version>
|
<version>1.0.0</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>StatusAPI</name>
|
|
||||||
<description>BungeeCord Status API Plugin</description>
|
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>8</maven.compiler.source>
|
<java.version>17</java.version>
|
||||||
<maven.compiler.target>8</maven.compiler.target>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>spigot-repo</id>
|
||||||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>vault-repo</id>
|
||||||
|
<url>https://nexus.hc.to/content/repositories/pub_releases/</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- BungeeCord API – direkt aus lokalem JAR, kein Repository noetig -->
|
<!-- Spigot API -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.md-5</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>bungeecord-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.20</version>
|
<version>1.21-R0.1-SNAPSHOT</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>
|
<scope>provided</scope>
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- Vault -->
|
||||||
<!-- HikariCP Connection Pool -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.zaxxer</groupId>
|
<groupId>net.milkbowl.vault</groupId>
|
||||||
<artifactId>HikariCP</artifactId>
|
<artifactId>VaultAPI</artifactId>
|
||||||
<version>5.1.0</version>
|
<version>1.7</version>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>StatusAPI</finalName>
|
<finalName>StatusAPIBridge</finalName>
|
||||||
|
<plugins>
|
||||||
<resources>
|
<plugin>
|
||||||
<resource>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<directory>src/main/resources</directory>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
<filtering>false</filtering>
|
<version>3.5.1</version>
|
||||||
</resource>
|
<executions>
|
||||||
</resources>
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals><goal>shade</goal></goals>
|
||||||
|
<configuration>
|
||||||
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
Reference in New Issue
Block a user