2013-02-09 09:08:56 +01:00
|
|
|
|
2013-02-09 09:03:45 +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>
|
|
|
|
|
2013-02-09 09:08:56 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2024-01-19 22:37:37 +01:00
|
|
|
<version>1.20-R0.2</version>
|
2013-02-09 09:08:56 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2013-02-09 09:03:45 +01:00
|
|
|
<groupId>net.md-5</groupId>
|
2013-02-09 09:08:56 +01:00
|
|
|
<artifactId>bungeecord-protocol</artifactId>
|
2024-01-19 22:37:37 +01:00
|
|
|
<version>1.20-R0.2</version>
|
2013-02-09 09:03:45 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2013-02-09 09:08:56 +01:00
|
|
|
<name>BungeeCord-Protocol</name>
|
|
|
|
<description>Minimal implementation of the Minecraft protocol for use in BungeeCord</description>
|
2013-03-07 08:17:49 +01:00
|
|
|
|
2023-10-28 03:57:19 +02:00
|
|
|
<!-- We really shouldn't depend on external repositories -->
|
2021-12-18 01:36:05 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2023-10-28 03:57:19 +02:00
|
|
|
<id>minecraft-libraries</id>
|
|
|
|
<name>Minecraft Libraries</name>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
2021-12-18 01:36:05 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependencies>
|
2018-12-20 00:33:36 +01:00
|
|
|
<dependency>
|
2023-10-28 03:57:19 +02:00
|
|
|
<groupId>com.mojang</groupId>
|
2018-12-20 00:33:36 +01:00
|
|
|
<artifactId>brigadier</artifactId>
|
2023-10-28 03:57:19 +02:00
|
|
|
<version>1.2.9</version>
|
2018-12-20 00:33:36 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-08-31 11:01:24 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2013-10-11 11:00:54 +02:00
|
|
|
<artifactId>netty-codec</artifactId>
|
2013-07-04 02:29:37 +02:00
|
|
|
<scope>compile</scope>
|
2013-03-07 08:17:49 +01:00
|
|
|
</dependency>
|
2014-09-12 10:24:14 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.trove4j</groupId>
|
2018-12-06 00:54:30 +01:00
|
|
|
<artifactId>core</artifactId>
|
|
|
|
<version>3.1.0</version>
|
2014-09-12 10:24:14 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-06-23 23:00:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>se.llbit</groupId>
|
|
|
|
<artifactId>jo-nbt</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-03-07 08:17:49 +01:00
|
|
|
</dependencies>
|
2013-02-09 09:03:45 +01:00
|
|
|
</project>
|