BungeeCord/protocol/pom.xml

48 lines
1.6 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>
2018-07-15 02:00:00 +02:00
<version>1.13-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>
2018-07-15 02:00:00 +02:00
<version>1.13-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
<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-03-14 10:35:58 +01:00
<version>${netty.version}</version>
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>
2013-03-07 08:17:49 +01:00
</dependencies>
</project>