diff --git a/pom.xml b/pom.xml
index 625b7da..563988d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
com.github.jtendermint
jabci
- 0.24.0
+ 0.26.0
com.github.jtendermint:jabci
Java implementation for ABCI consensus protocol from tendermint.com and related tools
@@ -136,7 +136,7 @@
com.google.protobuf
protobuf-java
- 3.5.1
+ 3.6.1
org.slf4j
@@ -144,9 +144,9 @@
1.7.25
- junit
- junit
- 4.12
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.3.1
test
diff --git a/src/main/java/com/github/jtendermint/jabci/socket/TSocket.java b/src/main/java/com/github/jtendermint/jabci/socket/TSocket.java
index be6a455..7c44e57 100644
--- a/src/main/java/com/github/jtendermint/jabci/socket/TSocket.java
+++ b/src/main/java/com/github/jtendermint/jabci/socket/TSocket.java
@@ -101,7 +101,7 @@ public class TSocket extends ASocket {
/**
* Start listening on the specified port
*
- * @param portNumber
+ * @param portNumber tendermint abci port
*/
public void start(final int portNumber) {
this.start(portNumber, DEFAULT_LISTEN_SOCKET_TIMEOUT);
diff --git a/src/test/java/com/github/jtendermint/jabci/socket/SocketListenerTest.java b/src/test/java/com/github/jtendermint/jabci/socket/SocketListenerTest.java
index 1d14765..788fb09 100644
--- a/src/test/java/com/github/jtendermint/jabci/socket/SocketListenerTest.java
+++ b/src/test/java/com/github/jtendermint/jabci/socket/SocketListenerTest.java
@@ -23,12 +23,12 @@
*/
package com.github.jtendermint.jabci.socket;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.IOException;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
import com.github.jtendermint.jabci.api.ABCIAPI;
import com.github.jtendermint.jabci.api.CodeType;