forked from GeyserMC/Geyser
58 lines
No EOL
2.2 KiB
XML
58 lines
No EOL
2.2 KiB
XML
<?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>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>common</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.steveice10</groupId>
|
|
<artifactId>opennbt</artifactId>
|
|
<version>1.3-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.steveice10</groupId>
|
|
<artifactId>packetlib</artifactId>
|
|
<version>1.4-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.steveice10</groupId>
|
|
<artifactId>mcauthlib</artifactId>
|
|
<version>1.1-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.steveice10</groupId>
|
|
<artifactId>mcprotocollib</artifactId>
|
|
<version>1.14.4-SNAPSHOT</version>
|
|
<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>
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
<version>3.3.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |