2013-01-10 07:56:09 +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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2013-07-02 12:59:04 +02:00
|
|
|
<version>1.6.1-SNAPSHOT</version>
|
2013-01-10 07:56:09 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2013-07-02 12:59:04 +02:00
|
|
|
<version>1.6.1-SNAPSHOT</version>
|
2013-01-10 07:56:09 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>BungeeCord-API</name>
|
|
|
|
<description>API implemented by the Elastic Portal Suite</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2013-04-28 02:12:37 +02:00
|
|
|
<version>14.0.1</version>
|
2013-01-10 09:54:12 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-03-20 08:52:26 +01:00
|
|
|
<dependency>
|
2013-03-20 09:10:59 +01:00
|
|
|
<groupId>com.ning</groupId>
|
|
|
|
<artifactId>async-http-client</artifactId>
|
2013-06-11 10:55:15 +02:00
|
|
|
<version>1.7.17</version>
|
2013-03-20 08:52:26 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-05-14 03:30:08 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-event</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-05-31 09:02:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-01-10 09:54:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2013-03-14 09:51:36 +01:00
|
|
|
<version>1.12</version>
|
2013-01-10 09:54:12 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-10 07:56:09 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|