Add build number back to version, update maven plugins

This commit is contained in:
Dan Mulloy 2019-12-15 14:50:39 -05:00
parent e915fd0f9a
commit 3ff2ccf1b3
No known key found for this signature in database
GPG Key ID: 2B62F7DACFF133E8
4 changed files with 11 additions and 11 deletions

16
pom.xml
View File

@ -38,7 +38,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
@ -71,7 +71,7 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
@ -81,7 +81,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
@ -98,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<version>3.0.0-M4</version>
<configuration>
<systemProperties>
<property>
@ -111,7 +111,7 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.1</version>
<configuration>
<failOnError>false</failOnError>
<encoding>ISO-8859-1</encoding>
@ -165,7 +165,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
@ -179,7 +179,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
@ -315,7 +315,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.21.0</version>
<version>3.2.0</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@ -26,7 +26,7 @@ import org.bukkit.plugin.Plugin;
* @author dmulloy2
*/
public class ProtocolLogger {
private static boolean debugEnabled = true;
private static boolean debugEnabled = false;
private static Logger logger = Logger.getLogger("Minecraft");
protected static void init(Plugin plugin) {

View File

@ -477,7 +477,7 @@ public class ChannelInjector extends ByteToMessageDecoder implements Injector {
throw (Exception) ex.getCause();
}
}
finalEvent = event;
}
}

View File

@ -1,5 +1,5 @@
name: ProtocolLib
version: 4.5.0-SNAPSHOT
version: ${project.fullVersion}
description: Provides read/write access to the Minecraft protocol.
authors: [dmulloy2, comphenix]