Skip to content

Commit 3ff2ccf

Browse files
committed
Add build number back to version, update maven plugins
1 parent e915fd0 commit 3ff2ccf

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<plugin>
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-shade-plugin</artifactId>
41-
<version>3.1.1</version>
41+
<version>3.2.1</version>
4242
<executions>
4343
<execution>
4444
<phase>package</phase>
@@ -71,7 +71,7 @@
7171

7272
<plugin>
7373
<artifactId>maven-compiler-plugin</artifactId>
74-
<version>3.7.0</version>
74+
<version>3.8.1</version>
7575
<configuration>
7676
<source>1.8</source>
7777
<target>1.8</target>
@@ -81,7 +81,7 @@
8181
<plugin>
8282
<groupId>org.apache.maven.plugins</groupId>
8383
<artifactId>maven-jar-plugin</artifactId>
84-
<version>3.1.0</version>
84+
<version>3.2.0</version>
8585
<configuration>
8686
<archive>
8787
<manifestEntries>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-surefire-plugin</artifactId>
101-
<version>2.22.0</version>
101+
<version>3.0.0-M4</version>
102102
<configuration>
103103
<systemProperties>
104104
<property>
@@ -111,7 +111,7 @@
111111

112112
<plugin>
113113
<artifactId>maven-javadoc-plugin</artifactId>
114-
<version>3.0.1</version>
114+
<version>3.1.1</version>
115115
<configuration>
116116
<failOnError>false</failOnError>
117117
<encoding>ISO-8859-1</encoding>
@@ -165,7 +165,7 @@
165165
<plugin>
166166
<groupId>org.apache.maven.plugins</groupId>
167167
<artifactId>maven-source-plugin</artifactId>
168-
<version>3.0.0</version>
168+
<version>3.2.0</version>
169169
<executions>
170170
<execution>
171171
<id>attach-sources</id>
@@ -179,7 +179,7 @@
179179
<plugin>
180180
<groupId>org.apache.maven.plugins</groupId>
181181
<artifactId>maven-javadoc-plugin</artifactId>
182-
<version>2.10.3</version>
182+
<version>3.1.1</version>
183183
<executions>
184184
<execution>
185185
<id>attach-javadocs</id>
@@ -315,7 +315,7 @@
315315
<dependency>
316316
<groupId>org.mockito</groupId>
317317
<artifactId>mockito-core</artifactId>
318-
<version>2.21.0</version>
318+
<version>3.2.0</version>
319319
<scope>test</scope>
320320
</dependency>
321321
<dependency>

src/main/java/com/comphenix/protocol/ProtocolLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author dmulloy2
2727
*/
2828
public class ProtocolLogger {
29-
private static boolean debugEnabled = true;
29+
private static boolean debugEnabled = false;
3030
private static Logger logger = Logger.getLogger("Minecraft");
3131

3232
protected static void init(Plugin plugin) {

src/main/java/com/comphenix/protocol/injector/netty/ChannelInjector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ private void encode(ChannelHandlerContext ctx, Object packet, ByteBuf output) th
477477
throw (Exception) ex.getCause();
478478
}
479479
}
480-
480+
481481
finalEvent = event;
482482
}
483483
}

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ProtocolLib
2-
version: 4.5.0-SNAPSHOT
2+
version: ${project.fullVersion}
33
description: Provides read/write access to the Minecraft protocol.
44
authors: [dmulloy2, comphenix]
55

0 commit comments

Comments
 (0)