Upload via Git Manager GUI

This commit is contained in:
Git Manager GUI
2026-04-19 17:43:13 +02:00
parent 179d46bb6f
commit 87f07e6af2

94
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>de.ticketsystem</groupId> <groupId>de.ticketsystem</groupId>
<artifactId>TicketSystem</artifactId> <artifactId>TicketSystem</artifactId>
<version>1.1.4</version> <version>1.1.5</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>TicketSystem</name> <name>TicketSystem</name>
@@ -27,26 +27,30 @@
</repositories> </repositories>
<dependencies> <dependencies>
<!-- JUnit 5 für Tests -->
<dependency> <!-- JUnit 5 fuer Tests -->
<groupId>org.junit.jupiter</groupId> <dependency>
<artifactId>junit-jupiter</artifactId> <groupId>org.junit.jupiter</groupId>
<version>5.10.0</version> <artifactId>junit-jupiter</artifactId>
<scope>test</scope> <version>5.10.0</version>
</dependency> <scope>test</scope>
<!-- Mockito für Mocking in Tests --> </dependency>
<dependency>
<groupId>org.mockito</groupId> <!-- Mockito fuer Mocking in Tests -->
<artifactId>mockito-core</artifactId> <dependency>
<version>5.2.0</version> <groupId>org.mockito</groupId>
<scope>test</scope> <artifactId>mockito-core</artifactId>
</dependency> <version>5.2.0</version>
<!-- JSON Simple --> <scope>test</scope>
<dependency> </dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId> <!-- JSON Simple -->
<version>1.1.1</version> <dependency>
</dependency> <groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<!-- Spigot API --> <!-- Spigot API -->
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
@@ -70,6 +74,38 @@
<version>5.1.0</version> <version>5.1.0</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<!-- ============================================================
Adventure API - MiniMessage, run_command, hover etc.
Spigot 1.20.4 bringt Adventure nicht mit -> compile scope.
Wird vom Shade-Plugin ins JAR gepackt und reloziert.
============================================================ -->
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
<version>4.17.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-minimessage</artifactId>
<version>4.17.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-legacy</artifactId>
<version>4.17.0</version>
<scope>compile</scope>
</dependency>
<!-- Bukkit-Platform-Adapter: verbindet Adventure mit Spigot -->
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-platform-bukkit</artifactId>
<version>4.3.4</version>
<scope>compile</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
@@ -95,6 +131,20 @@
<pattern>com.zaxxer.hikari</pattern> <pattern>com.zaxxer.hikari</pattern>
<shadedPattern>de.ticketsystem.libs.hikari</shadedPattern> <shadedPattern>de.ticketsystem.libs.hikari</shadedPattern>
</relocation> </relocation>
<!-- Adventure relozieren: verhindert Konflikte mit
Paper oder anderen Plugins die Adventure mitbringen -->
<relocation>
<pattern>net.kyori.adventure</pattern>
<shadedPattern>de.ticketsystem.libs.adventure</shadedPattern>
</relocation>
<relocation>
<pattern>net.kyori.examination</pattern>
<shadedPattern>de.ticketsystem.libs.examination</shadedPattern>
</relocation>
<relocation>
<pattern>net.kyori.option</pattern>
<shadedPattern>de.ticketsystem.libs.option</shadedPattern>
</relocation>
</relocations> </relocations>
</configuration> </configuration>
</execution> </execution>
@@ -102,4 +152,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>