<?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> <groupId>de.steamwar</groupId> <artifactId>BungeeCore</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>BungeeCore</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <main.basedir>${project.basedir}</main.basedir> </properties> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <directory>src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> <finalName>bungeecore</finalName> </build> <repositories> <repository> <id>dv8tion</id> <name>m2-dv8tion</name> <url>https://m2.dv8tion.net/releases</url> </repository> </repositories> <dependencies> <dependency> <groupId>steamwar</groupId> <artifactId>BungeeCord</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${main.basedir}/lib/BungeeCord.jar</systemPath> </dependency> <dependency> <groupId>steamwar</groupId> <artifactId>PersistentBungeeCore</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${main.basedir}/lib/PersistentBungeeCore.jar</systemPath> </dependency> <dependency> <groupId>steamwar</groupId> <artifactId>BungeeTabListPlus</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${main.basedir}/lib/BungeeTabListPlus.jar</systemPath> </dependency> <dependency> <groupId>net.dv8tion</groupId> <artifactId>JDA</artifactId> <version>4.3.0_299</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>club.minnced</groupId> <artifactId>opus-java</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> <scope>provided</scope> </dependency> </dependencies> </project>