2019-07-08 17:55:14 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>org.geysermc</groupId>
|
|
|
|
<artifactId>geyser-parent</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>opennbt</artifactId>
|
2019-07-08 22:28:22 +00:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>packetlib</artifactId>
|
2019-07-08 22:28:22 +00:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>mcauthlib</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>mcprotocollib</artifactId>
|
2019-07-08 22:28:22 +00:00
|
|
|
<version>1.14.3-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>opennbt</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>packetlib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>mcauthlib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
<version>3.3.0</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.7</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|