pom.xml aktualisiert

This commit is contained in:
2025-09-29 20:26:13 +00:00
parent 26a337c392
commit 48638aef6d

144
pom.xml
View File

@@ -1,64 +1,80 @@
<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"> http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>de.viper</groupId> <groupId>de.viper</groupId>
<artifactId>globalchat</artifactId> <artifactId>globalchat</artifactId>
<version>1.3-SNAPSHOT</version> <version>1.3</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>GlobalChat</name> <name>GlobalChat</name>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
<dependencies> <repositories>
<!-- BungeeCord API für Minecraft 1.21.x --> <!-- LuckPerms Repository -->
<dependency> <repository>
<groupId>net.md-5</groupId> <id>luck-repo</id>
<artifactId>bungeecord-api</artifactId> <url>https://repo.lucko.me/</url>
<version>1.21-R0.1-SNAPSHOT</version> </repository>
<scope>provided</scope> </repositories>
</dependency>
</dependencies> <dependencies>
<!-- BungeeCord API -->
<build> <dependency>
<plugins> <groupId>net.md-5</groupId>
<!-- Compiler Plugin --> <artifactId>bungeecord-api</artifactId>
<plugin> <version>1.21-R0.1-SNAPSHOT</version>
<groupId>org.apache.maven.plugins</groupId> <scope>provided</scope>
<artifactId>maven-compiler-plugin</artifactId> </dependency>
<version>3.8.1</version>
<configuration> <!-- LuckPerms API -->
<source>1.8</source> <dependency>
<target>1.8</target> <groupId>net.luckperms</groupId>
</configuration> <artifactId>api</artifactId>
</plugin> <version>5.4</version>
<scope>provided</scope>
<!-- Shade Plugin für fertiges JAR --> </dependency>
<plugin> </dependencies>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <build>
<version>3.2.4</version> <plugins>
<executions> <!-- Compiler Plugin -->
<execution> <plugin>
<phase>package</phase> <groupId>org.apache.maven.plugins</groupId>
<goals> <artifactId>maven-compiler-plugin</artifactId>
<goal>shade</goal> <version>3.8.1</version>
</goals> <configuration>
<configuration> <source>1.8</source>
<createDependencyReducedPom>false</createDependencyReducedPom> <target>1.8</target>
</configuration> </configuration>
</execution> </plugin>
</executions>
</plugin> <!-- Shade Plugin -->
</plugins> <plugin>
</build> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
</project> <version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>