<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.cubeside</groupId> <artifactId>globalconnectionbukkit</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <finalName>GlobalClient</finalName> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>21</release> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations /> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>papermc</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>brokkonaut</id> <url>https://www.iani.de/nexus/content/groups/public</url> </repository> </repositories> <dependencies> <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> <version>1.21.4-R0.1-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>gson</artifactId> <groupId>com.google.code.gson</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>joml</artifactId> <groupId>org.joml</groupId> </exclusion> <exclusion> <artifactId>json-simple</artifactId> <groupId>com.googlecode.json-simple</groupId> </exclusion> <exclusion> <artifactId>fastutil</artifactId> <groupId>it.unimi.dsi</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>brigadier</artifactId> <groupId>com.mojang</groupId> </exclusion> <exclusion> <artifactId>bungeecord-chat</artifactId> <groupId>net.md-5</groupId> </exclusion> <exclusion> <artifactId>maven-resolver-provider</artifactId> <groupId>org.apache.maven</groupId> </exclusion> <exclusion> <artifactId>jspecify</artifactId> <groupId>org.jspecify</groupId> </exclusion> <exclusion> <artifactId>adventure-api</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>adventure-text-minimessage</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>adventure-text-serializer-gson</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>adventure-text-serializer-legacy</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>adventure-text-serializer-plain</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>adventure-text-logger-slf4j</artifactId> <groupId>net.kyori</groupId> </exclusion> <exclusion> <artifactId>checker-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>nexus</id> <name>Releases</name> <url>https://www.iani.de/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus</id> <name>Snapshot</name> <url>https://www.iani.de/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <build.number>DEV</build.number> </properties> </project>