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>
|
2019-12-01 21:16:52 +00:00
|
|
|
<version>parent</version>
|
|
|
|
<relativePath>../</relativePath>
|
2019-07-08 17:55:14 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>connector</artifactId>
|
2019-12-01 21:16:52 +00:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-07-08 17:55:14 +00:00
|
|
|
<dependencies>
|
2019-07-08 22:28:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>common</artifactId>
|
2019-07-17 17:51:05 +00:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-07-08 19:13:31 +00:00
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
|
|
<version>2.9.8</version>
|
2019-09-21 15:14:46 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 19:13:31 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
<version>2.9.8</version>
|
2019-09-21 15:14:46 +00:00
|
|
|
<scope>compile</scope>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependency>
|
2019-07-23 23:44:30 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.protocol</groupId>
|
2020-04-17 16:38:18 +00:00
|
|
|
<artifactId>bedrock-v390</artifactId>
|
2020-04-25 04:05:06 +00:00
|
|
|
<version>2.5.5</version>
|
2019-07-23 23:44:30 +00:00
|
|
|
<scope>compile</scope>
|
2020-03-18 21:10:28 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.sf.trove4j</groupId>
|
|
|
|
<artifactId>trove</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-07-23 23:44:30 +00:00
|
|
|
</dependency>
|
2019-07-08 19:13:31 +00:00
|
|
|
<dependency>
|
2020-03-18 21:10:28 +00:00
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-int-int-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-int-float-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-long-long-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
2019-07-23 23:44:30 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-07-08 19:13:31 +00:00
|
|
|
<dependency>
|
2020-03-18 21:10:28 +00:00
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-object-long-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
2019-07-08 19:13:31 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-03-21 20:14:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-int-double-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-int-boolean-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-03-22 22:59:34 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-object-int-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-03-26 22:34:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-object-byte-maps</artifactId>
|
|
|
|
<version>8.3.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-07-08 22:28:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>opennbt</artifactId>
|
2020-01-31 08:15:18 +00:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>packetlib</artifactId>
|
2020-02-29 21:32:03 +00:00
|
|
|
<version>1.5-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
2019-11-28 23:27:43 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-07-08 22:28:22 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>mcauthlib</artifactId>
|
2020-04-25 02:57:15 +00:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.steveice10</groupId>
|
|
|
|
<artifactId>mcprotocollib</artifactId>
|
2020-01-23 02:28:08 +00:00
|
|
|
<version>1.15.2-1-SNAPSHOT</version>
|
2019-07-08 22:28:22 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
<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>
|
2020-03-24 04:03:33 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
<version>0.9.12</version>
|
|
|
|
</dependency>
|
2020-04-23 06:26:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>text-api</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>text-serializer-gson</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>text-serializer-legacy</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-07-08 17:55:14 +00:00
|
|
|
</dependencies>
|
2019-11-27 15:58:57 +00:00
|
|
|
</project>
|