Skip to content

Commit 553e4b6

Browse files
committed
Update to 1.16.3
1 parent bdaa843 commit 553e4b6

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<project.fullVersion>${project.version}</project.fullVersion>
1818

1919
<powermock.version>2.0.7</powermock.version>
20-
<spigot.version>1.16.2-R0.1-SNAPSHOT</spigot.version>
20+
<spigot.version>1.16.3-R0.1-SNAPSHOT</spigot.version>
2121
</properties>
2222

2323
<build>
@@ -38,7 +38,7 @@
3838
<plugin>
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-shade-plugin</artifactId>
41-
<version>3.2.1</version>
41+
<version>3.2.4</version>
4242
<executions>
4343
<execution>
4444
<phase>package</phase>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-surefire-plugin</artifactId>
101-
<version>3.0.0-M4</version>
101+
<version>3.0.0-M5</version>
102102
<configuration>
103103
<systemProperties>
104104
<property>
@@ -111,7 +111,7 @@
111111

112112
<plugin>
113113
<artifactId>maven-javadoc-plugin</artifactId>
114-
<version>3.1.1</version>
114+
<version>3.2.0</version>
115115
<configuration>
116116
<failOnError>false</failOnError>
117117
<encoding>ISO-8859-1</encoding>
@@ -180,7 +180,7 @@
180180
<plugin>
181181
<groupId>org.apache.maven.plugins</groupId>
182182
<artifactId>maven-javadoc-plugin</artifactId>
183-
<version>3.1.1</version>
183+
<version>3.2.0</version>
184184
<executions>
185185
<execution>
186186
<id>attach-javadocs</id>
@@ -308,7 +308,7 @@
308308
<dependency>
309309
<groupId>org.mockito</groupId>
310310
<artifactId>mockito-core</artifactId>
311-
<version>3.3.3</version>
311+
<version>3.5.10</version>
312312
<scope>test</scope>
313313
</dependency>
314314
<dependency>

src/main/java/com/comphenix/protocol/utility/MinecraftProtocolVersion.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ private static NavigableMap<MinecraftVersion, Integer> createLookup() {
7070
map.put(new MinecraftVersion(1, 16, 0), 735);
7171
map.put(new MinecraftVersion(1, 16, 1), 736);
7272
map.put(new MinecraftVersion(1, 16, 2), 751);
73+
map.put(new MinecraftVersion(1, 16, 3), 753);
7374
return map;
7475
}
7576

0 commit comments

Comments
 (0)