2013-02-09 09:08:56 +01:00
|
|
|
|
2013-01-10 07:41:37 +01:00
|
|
|
<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>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2013-01-10 07:41:37 +01:00
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2023-06-07 17:30:00 +02:00
|
|
|
<version>1.20-R0.1-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>bungeecord-proxy</artifactId>
|
2023-06-07 17:30:00 +02:00
|
|
|
<version>1.20-R0.1-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2013-01-10 07:56:09 +01:00
|
|
|
<name>BungeeCord-Proxy</name>
|
2013-01-10 07:41:37 +01:00
|
|
|
<description>Proxy component of the Elastic Portal Suite</description>
|
|
|
|
|
2017-06-21 11:45:03 +02:00
|
|
|
<properties>
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2020-02-04 04:59:52 +01:00
|
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
2017-06-21 11:45:03 +02:00
|
|
|
</properties>
|
|
|
|
|
2013-01-10 07:41:37 +01:00
|
|
|
<dependencies>
|
2017-07-01 01:38:27 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-haproxy</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2013-07-04 13:59:38 +02:00
|
|
|
<artifactId>netty-codec-http</artifactId>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-03-07 08:17:49 +01:00
|
|
|
</dependency>
|
2016-08-30 12:22:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-06-25 10:21:59 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport-native-epoll</artifactId>
|
|
|
|
<classifier>linux-x86_64</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-07-23 10:53:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport-native-epoll</artifactId>
|
|
|
|
<classifier>linux-aarch_64</classifier>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-06-11 10:55:15 +02:00
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2016-07-11 03:04:58 +02:00
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2013-06-11 10:55:15 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-01-10 07:41:37 +01:00
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2016-07-11 03:04:58 +02:00
|
|
|
<artifactId>bungeecord-log</artifactId>
|
2013-02-09 09:08:56 +01:00
|
|
|
<version>${project.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-10 07:41:37 +01:00
|
|
|
</dependency>
|
2013-11-18 21:16:06 +01:00
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2013-11-18 21:16:06 +01:00
|
|
|
<artifactId>bungeecord-native</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-01-10 07:56:09 +01:00
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2013-09-23 02:28:30 +02:00
|
|
|
<artifactId>bungeecord-protocol</artifactId>
|
2013-09-24 02:09:55 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2013-09-24 02:09:55 +02:00
|
|
|
<artifactId>bungeecord-query</artifactId>
|
2013-01-10 07:56:09 +01:00
|
|
|
<version>${project.version}</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-10 07:56:09 +01:00
|
|
|
</dependency>
|
2021-05-14 00:39:17 +02:00
|
|
|
<dependency>
|
2016-10-01 23:26:27 +02:00
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
2021-05-14 00:39:17 +02:00
|
|
|
<artifactId>bungeecord-slf4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-12-18 01:19:21 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
2020-01-21 22:00:00 +01:00
|
|
|
<version>5.0.4</version>
|
2018-12-18 01:19:21 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-03-07 11:04:03 +01:00
|
|
|
<dependency>
|
2023-03-14 17:30:00 +01:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2023-04-19 23:26:54 +02:00
|
|
|
<version>8.0.33</version>
|
2013-05-14 10:32:17 +02:00
|
|
|
<scope>runtime</scope>
|
2013-01-22 07:01:32 +01:00
|
|
|
</dependency>
|
2021-04-09 05:13:55 +02:00
|
|
|
<!-- add these back in as they are not exposed by the API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
2023-05-20 03:13:38 +02:00
|
|
|
<version>3.9.2</version>
|
2021-05-16 10:08:57 +02:00
|
|
|
<scope>runtime</scope>
|
2021-04-09 05:13:55 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
2023-05-20 03:13:38 +02:00
|
|
|
<version>1.9.10</version>
|
2021-05-16 10:08:57 +02:00
|
|
|
<scope>runtime</scope>
|
2021-04-09 05:13:55 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
2023-05-20 03:13:38 +02:00
|
|
|
<version>1.9.10</version>
|
2021-05-16 10:08:57 +02:00
|
|
|
<scope>runtime</scope>
|
2021-04-09 05:13:55 +02:00
|
|
|
</dependency>
|
2013-01-10 07:41:37 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|