pom.xml aktualisiert

This commit is contained in:
2025-08-11 15:28:56 +00:00
parent e2272bed54
commit 1cd266385b

23
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>de.m-viper</groupId>
<artifactId>PlayerStatusSign-reloaded</artifactId>
<version>1.2</version>
<version>1.3</version>
<packaging>jar</packaging>
<name>PlayerStatusSign</name>
@@ -25,16 +25,26 @@
</repositories>
<dependencies>
<!-- Spigot API -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.21.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- bStats Bukkit -->
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -44,10 +54,12 @@
<target>17</target>
</configuration>
</plugin>
<!-- Shade Plugin mit Relocation von bStats -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
@@ -56,11 +68,18 @@
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.m.viper.shaded.bstats</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>