Update Adventure to fix click event deserialization

Fixes #3054
This commit is contained in:
Camotoy 2022-06-29 16:42:30 -04:00
parent 5d29bda7eb
commit f62484b93e
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 27 additions and 1 deletions

View File

@ -11,12 +11,20 @@
<artifactId>core</artifactId>
<properties>
<adventure.version>4.9.3</adventure.version>
<adventure.version>4.12.0-20220629.025215-9</adventure.version> <!-- Snapshot fixes https://github.com/KyoriPowered/adventure/issues/792 -->
<fastutil.version>8.5.2</fastutil.version>
<jackson.version>2.13.2</jackson.version>
<netty.version>4.1.66.Final</netty.version>
</properties>
<repositories>
<repository>
<!-- For Adventure snapshots -->
<id>sonatype-s01</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.geysermc</groupId>
@ -166,6 +174,11 @@
<groupId>com.github.GeyserMC</groupId>
<artifactId>mcauthlib</artifactId>
</exclusion>
<exclusion>
<!-- Remove when MCProtocolLib updates to 4.12-SNAPSHOT or later -->
<groupId>net.kyori</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
@ -245,6 +258,19 @@
<version>${adventure.version}</version>
<scope>compile</scope>
</dependency>
<!-- Remove the following two when MCProtocolLib updates to 4.12-SNAPSHOT or later -->
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-gson</artifactId>
<version>${adventure.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-gson-legacy-impl</artifactId>
<version>${adventure.version}</version>
<scope>compile</scope>
</dependency>
<!-- Other -->
<dependency>
<groupId>junit</groupId>