<?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"> <parent> <artifactId>bungeeipc-parent</artifactId> <groupId>org.bspfsystems.bungeeipc</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>bungeeipc-bungeecord</artifactId> <name>BungeeIPC-BungeeCordPlugin</name> <description>Implementation of the BungeeIPC API for the BungeeIPC plugin for Minecraft BungeeCord proxy servers.</description> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <minimizeJar>true</minimizeJar> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.bspfsystems.bungeeipc</groupId> <artifactId>bungeeipc-bungeecord</artifactId> <version>1.0.0</version> </dependency>
org.bspfsystems.bungeeipc:bungeeipc-bungeecord:1.0.0