Updated dependencies, updated version

This commit is contained in:
nathan 2016-03-12 12:52:27 +01:00
parent 3d5cf8dbb7
commit ee75e50377
5 changed files with 7 additions and 7 deletions

View File

@ -91,7 +91,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>1.1</version>
<version>1.4</version>
</dependency>
```
@ -101,6 +101,8 @@ https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Network-Dorkb
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/ObjectPool/
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/MinLog-SLF4J/
https://repo1.maven.org/maven2/org/slf4j/slf4j-api/
https://repo1.maven.org/maven2/io/netty/netty-all/ (latest 4.1)
https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/
@ -110,8 +112,6 @@ https://repo1.maven.org/maven2/org/javassist/javassist/
https://repo1.maven.org/maven2/com/esotericsoftware/jsonbeans/
minlog to slf4j
https://repo1.maven.org/maven2/com/esotericsoftware/reflectasm/
https://repo1.maven.org/maven2/net/jpountz/lz4/lz4/
https://repo1.maven.org/maven2/org/objenesis/objenesis/

View File

@ -48,7 +48,7 @@ class Broadcast {
*/
public static
String getVersion() {
return "1.1";
return "1.4";
}
/**

View File

@ -66,7 +66,7 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
*/
public static
String getVersion() {
return "1.1";
return "1.4";
}
/**

View File

@ -104,7 +104,7 @@ class DnsClient {
*/
public static
String getVersion() {
return "1.1";
return "1.4";
}
/**

View File

@ -63,7 +63,7 @@ class Server<C extends Connection> extends EndPointServer<C> {
*/
public static
String getVersion() {
return "1.1";
return "1.4";
}
/**