BungeeCord/protocol/pom.xml

62 lines
2.0 KiB
XML
Raw Normal View History

2013-02-09 09:08:56 +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:41:57 +01:00
<version>1.20-R0.3-SNAPSHOT</version>
2013-02-09 09:08:56 +01:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>net.md-5</groupId>
2013-02-09 09:08:56 +01:00
<artifactId>bungeecord-protocol</artifactId>
2024-01-19 22:41:57 +01:00
<version>1.20-R0.3-SNAPSHOT</version>
<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>
<dependency>
2023-10-28 03:57:19 +02:00
<groupId>com.mojang</groupId>
<artifactId>brigadier</artifactId>
2023-10-28 03:57:19 +02:00
<version>1.2.9</version>
<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>
<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>
</project>