BungeeCord/protocol/pom.xml

30 lines
1014 B
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>
<version>1.5-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>
<version>1.5-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>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
2013-03-14 10:35:58 +01:00
<version>${netty.version}</version>
<scope>provided</scope>
2013-03-07 08:17:49 +01:00
</dependency>
</dependencies>
</project>