Skip to content

Commit

Permalink
Support initial upcoming 1.19.40 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugmatt committed Oct 19, 2022
1 parent 6d4f577 commit 9d53025
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
18 changes: 3 additions & 15 deletions serverlist-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
Expand Down Expand Up @@ -69,19 +70,6 @@
</repository>
</repositories>

<distributionManagement>
<repository>
<id>releases</id>
<name>opencollab-releases</name>
<url>https://repo.opencollab.dev/maven-releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>opencollab-snapshots</name>
<url>https://repo.opencollab.dev/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<!-- https://mvnrepository.com/artifact/net.minidev/json-smart -->
<dependency>
Expand All @@ -91,8 +79,8 @@
</dependency>
<dependency>
<groupId>com.nukkitx.protocol</groupId>
<artifactId>bedrock-v554</artifactId>
<version>2.9.12-SNAPSHOT</version>
<artifactId>bedrock-v557</artifactId>
<version>2.9.13-SNAPSHOT</version>
<scope>compile</scope>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import com.nukkitx.protocol.bedrock.v534.Bedrock_v534;
import com.nukkitx.protocol.bedrock.v544.Bedrock_v544;
import com.nukkitx.protocol.bedrock.v554.Bedrock_v554;
import com.nukkitx.protocol.bedrock.v557.Bedrock_v557;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -60,6 +61,7 @@ public class BedrockProtocol {
.protocolVersion(545)
.build());
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v554.V554_CODEC);
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v557.V557_CODEC);

}

Expand Down

0 comments on commit 9d53025

Please sign in to comment.