From 834b9310cab4b4968a014ceb4efc06af33773227 Mon Sep 17 00:00:00 2001 From: crykn Date: Wed, 21 Aug 2019 01:56:11 +0200 Subject: [PATCH] Fixed the travis ci setup. --- .travis.yml | 9 +-------- README.md | 6 +++--- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb47af70..39615531 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: java -jdk: oraclejdk9 +jdk: oraclejdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock @@ -13,12 +13,5 @@ cache: before_install: - chmod +x gradlew -#after_success: -# - bash <(curl -s https://codecov.io/bash) - -#addons: -# sonarcloud: -# organization: "xyz" - notifications: email: false diff --git a/README.md b/README.md index 051d34cc..cbb0ccfa 100644 --- a/README.md +++ b/README.md @@ -300,10 +300,10 @@ The [Apache MINA](http://mina.apache.org/) project is similar to KryoNet. MINA's The [PyroNet](https://code.google.com/p/pyronet/) project (discontinued) is a minimal layer over NIO. It provides TCP networking similar to KryoNet, but without the higher level features. Priobit requires all network communication to occur on a single thread. The [Java Game Networking](http://code.google.com/p/jgn/) project (discontinued as well) is a higher level library similar to KryoNet. JGN does not have as simple of an API. - - --- + + ## Download @@ -320,7 +320,7 @@ allprojects { } dependencies { - compile 'com.github.crykn:kryonet:2.22.5' + compile 'com.github.crykn:kryonet:2.22.6' } ```