<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.geysermc</groupId> <artifactId>bootstrap-parent</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>bootstrap-bungeecord</artifactId> <dependencies> <dependency> <groupId>org.geysermc</groupId> <artifactId>connector</artifactId> <version>1.0-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.14-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> <build> <finalName>${outputName}-BungeeCord</finalName> <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>net.md_5.bungee.jni</pattern> <shadedPattern>org.geysermc.platform.bungeecord.shaded.jni</shadedPattern> </relocation> <relocation> <pattern>io.netty</pattern> <shadedPattern>org.geysermc.platform.bungeecord.shaded.netty</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*</exclude> </excludes> </filter> </filters> <artifactSet> <excludes> <exclude>com.google.code.gson:*</exclude> <exclude>org.yaml:*</exclude> </excludes> </artifactSet> </configuration> </plugin> </plugins> </build> </project>