mirror of
https://github.com/fluencelabs/jabci
synced 2025-04-24 14:22:19 +00:00
update pom and dependencies
This commit is contained in:
parent
b0860d6235
commit
4354e77223
10
pom.xml
10
pom.xml
@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>com.github.jtendermint</groupId>
|
||||
<artifactId>jabci</artifactId>
|
||||
<version>0.24.0</version>
|
||||
<version>0.26.0</version>
|
||||
|
||||
<name>com.github.jtendermint:jabci</name>
|
||||
<description>Java implementation for ABCI consensus protocol from tendermint.com and related tools</description>
|
||||
@ -136,7 +136,7 @@
|
||||
<dependency>
|
||||
<groupId>com.google.protobuf</groupId>
|
||||
<artifactId>protobuf-java</artifactId>
|
||||
<version>3.5.1</version>
|
||||
<version>3.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
@ -144,9 +144,9 @@
|
||||
<version>1.7.25</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.3.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user