-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies * Use static imports for Assertions * Change commit hash from jitpack
- Loading branch information
1 parent
6f53d57
commit 64d5824
Showing
30 changed files
with
124 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
<name>MCProtocolLib</name> | ||
<description>MCProtocolLib is a simple library for communicating with Minecraft clients and servers.</description> | ||
<url>http://github.com/GeyserMC/MCProtocolLib/</url> | ||
<url>https://github.com/GeyserMC/MCProtocolLib/</url> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:GeyserMC/MCProtocolLib.git</connection> | ||
|
@@ -20,15 +20,15 @@ | |
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jdk.version>1.8</jdk.version> | ||
<adventure.version>4.9.3</adventure.version> | ||
<argLine></argLine> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<adventure.version>4.14.0</adventure.version> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>MIT</name> | ||
<url>http://www.opensource.org/licenses/mit-license.html</url> | ||
<url>https://opensource.org/license/mit/</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
@@ -81,6 +81,7 @@ | |
</repositories> | ||
|
||
<dependencies> | ||
<!-- Minecraft related libraries --> | ||
<dependency> | ||
<groupId>com.github.steveice10</groupId> | ||
<artifactId>opennbt</artifactId> | ||
|
@@ -90,9 +91,10 @@ | |
<dependency> | ||
<groupId>com.github.GeyserMC</groupId> | ||
<artifactId>mcauthlib</artifactId> | ||
<version>6f3d6aada5</version> | ||
<version>6621fd081c</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Kyori adventure --> | ||
<dependency> | ||
<groupId>net.kyori</groupId> | ||
<artifactId>adventure-text-serializer-gson</artifactId> | ||
|
@@ -105,12 +107,20 @@ | |
<version>${adventure.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Lombok and annotations --> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.18.22</version> | ||
<version>1.18.30</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-annotations</artifactId> | ||
<version>4.7.3</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- Math utilities --> | ||
<dependency> | ||
<groupId>org.cloudburstmc.math</groupId> | ||
<artifactId>api</artifactId> | ||
|
@@ -123,48 +133,45 @@ | |
<version>2.0</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Stripped down fastutil --> | ||
<dependency> | ||
<groupId>com.nukkitx.fastutil</groupId> | ||
<artifactId>fastutil-object-int-maps</artifactId> | ||
<version>8.5.2</version> | ||
<version>8.5.3</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.13.1</version> | ||
<scope>test</scope> | ||
<groupId>com.nukkitx.fastutil</groupId> | ||
<artifactId>fastutil-int-object-maps</artifactId> | ||
<version>8.5.3</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Netty --> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-all</artifactId> | ||
<version>4.1.66.Final</version> | ||
<version>4.1.99.Final</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-codec-haproxy</artifactId> | ||
<version>4.1.66.Final</version> | ||
<version>4.1.99.Final</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty.incubator</groupId> | ||
<artifactId>netty-incubator-transport-native-io_uring</artifactId> | ||
<version>0.0.8.Final</version> | ||
<version>0.0.23.Final</version> | ||
<classifier>linux-x86_64</classifier> | ||
</dependency> | ||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-annotations</artifactId> | ||
<version>4.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.nukkitx.fastutil</groupId> | ||
<artifactId>fastutil-int-object-maps</artifactId> | ||
<version>8.5.2</version> | ||
<scope>compile</scope> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter</artifactId> | ||
<version>5.8.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
@@ -174,40 +181,32 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<version>3.3.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.0.2</version> | ||
<version>3.3.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.0.2</version> | ||
<version>3.3.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.7.0</version> | ||
<configuration> | ||
<source>${jdk.version}</source> | ||
<target>${jdk.version}</target> | ||
</configuration> | ||
<version>3.11.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.22.0</version> | ||
<configuration> | ||
<!-- Force the right file encoding during unit testing --> | ||
<argLine>-Dfile.encoding=${project.build.sourceEncoding} @{argLine}</argLine> | ||
</configuration> | ||
<version>3.1.2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<version>3.6.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
|
@@ -225,7 +224,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -238,12 +237,12 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-install-plugin</artifactId> | ||
<version>2.5.2</version> | ||
<version>3.1.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
<version>3.1.1</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/com/github/steveice10/mc/protocol/data/DefaultComponentSerializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.