2019-03-10 17:26:38 +01:00
|
|
|
<?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>
|
|
|
|
|
2019-06-13 20:18:49 +02:00
|
|
|
<groupId>de.steamwar</groupId>
|
2019-03-10 17:26:38 +01:00
|
|
|
<artifactId>BungeeCore</artifactId>
|
2019-03-10 19:42:48 +01:00
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>BungeeCore</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-09-03 20:25:51 +02:00
|
|
|
<main.basedir>${project.basedir}</main.basedir>
|
2019-03-10 19:42:48 +01:00
|
|
|
</properties>
|
2019-03-10 17:26:38 +01:00
|
|
|
|
|
|
|
<build>
|
2019-03-10 19:42:48 +01:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2019-03-10 17:26:38 +01:00
|
|
|
<plugins>
|
2019-06-13 22:09:30 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-09-03 20:25:51 +02:00
|
|
|
<version>3.6.1</version>
|
2019-06-13 22:09:30 +02:00
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-07-28 15:06:40 +02:00
|
|
|
<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>
|
2019-03-10 17:26:38 +01:00
|
|
|
</plugins>
|
2019-12-06 20:18:00 +01:00
|
|
|
<finalName>bungeecore</finalName>
|
2019-03-10 17:26:38 +01:00
|
|
|
</build>
|
|
|
|
|
2021-07-28 15:06:40 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>dv8tion</id>
|
|
|
|
<name>m2-dv8tion</name>
|
|
|
|
<url>https://m2.dv8tion.net/releases</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2019-03-10 17:26:38 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-09-03 20:25:51 +02:00
|
|
|
<groupId>steamwar</groupId>
|
|
|
|
<artifactId>BungeeCord</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${main.basedir}/lib/BungeeCord.jar</systemPath>
|
2019-03-10 17:26:38 +01:00
|
|
|
</dependency>
|
2019-06-22 23:38:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>steamwar</groupId>
|
|
|
|
<artifactId>PersistentBungeeCore</artifactId>
|
|
|
|
<version>1.0</version>
|
2020-09-03 20:25:51 +02:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${main.basedir}/lib/PersistentBungeeCore.jar</systemPath>
|
2019-06-22 23:38:01 +02:00
|
|
|
</dependency>
|
2020-04-17 18:54:50 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>steamwar</groupId>
|
|
|
|
<artifactId>BungeeTabListPlus</artifactId>
|
|
|
|
<version>1.0</version>
|
2020-09-03 20:25:51 +02:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${main.basedir}/lib/BungeeTabListPlus.jar</systemPath>
|
2020-04-17 18:54:50 +02:00
|
|
|
</dependency>
|
2021-07-28 15:06:40 +02:00
|
|
|
<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>
|
2019-03-10 17:26:38 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|