Update to 1.16.3

This commit is contained in:
Dan Mulloy 2020-10-19 11:02:32 -04:00
parent bdaa843f2d
commit 553e4b6813
No known key found for this signature in database
GPG Key ID: 2B62F7DACFF133E8
2 changed files with 7 additions and 6 deletions

12
pom.xml
View File

@ -17,7 +17,7 @@
<project.fullVersion>${project.version}</project.fullVersion> <project.fullVersion>${project.version}</project.fullVersion>
<powermock.version>2.0.7</powermock.version> <powermock.version>2.0.7</powermock.version>
<spigot.version>1.16.2-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.16.3-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>
<build> <build>
@ -38,7 +38,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version> <version>3.2.4</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@ -98,7 +98,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version> <version>3.0.0-M5</version>
<configuration> <configuration>
<systemProperties> <systemProperties>
<property> <property>
@ -111,7 +111,7 @@
<plugin> <plugin>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version> <version>3.2.0</version>
<configuration> <configuration>
<failOnError>false</failOnError> <failOnError>false</failOnError>
<encoding>ISO-8859-1</encoding> <encoding>ISO-8859-1</encoding>
@ -180,7 +180,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version> <version>3.2.0</version>
<executions> <executions>
<execution> <execution>
<id>attach-javadocs</id> <id>attach-javadocs</id>
@ -308,7 +308,7 @@
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>3.3.3</version> <version>3.5.10</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -70,6 +70,7 @@ public class MinecraftProtocolVersion {
map.put(new MinecraftVersion(1, 16, 0), 735); map.put(new MinecraftVersion(1, 16, 0), 735);
map.put(new MinecraftVersion(1, 16, 1), 736); map.put(new MinecraftVersion(1, 16, 1), 736);
map.put(new MinecraftVersion(1, 16, 2), 751); map.put(new MinecraftVersion(1, 16, 2), 751);
map.put(new MinecraftVersion(1, 16, 3), 753);
return map; return map;
} }