BungeeCord/protocol/pom.xml

68 lines
2.3 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>
2023-08-07 00:01:47 +02:00
<version>1.20-R0.2-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>
2023-08-07 00:01:47 +02:00
<version>1.20-R0.2-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
2021-12-18 01:36:05 +01:00
<!-- We really shouldn't depend on external repositories, but at least this is the Central staging one -->
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2013-03-07 08:17:49 +01:00
<dependencies>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>brigadier</artifactId>
<version>1.0.16-SNAPSHOT</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>