Work around outdated OracleJDK8 on Travis CI server

The Gradle JavaFX plugin requires Oracle JDK 8u20 or better. Travis CI
currently runs something older, and does not have a roadmap for
upgrading. This commit instructs the Travis CI VM to install JDK 8u20
via `apt` prior to actually beginning the build.

See #66
This commit is contained in:
Chris Beams 2014-10-03 17:32:13 +02:00
parent bfa585583f
commit 153eb5326b
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73

View File

@ -1,6 +1,12 @@
language: java
jdk: oraclejdk8
install:
- "sudo apt-get purge openjdk*"
- "sudo add-apt-repository -y ppa:webupd8team/java"
- "sudo apt-get update"
- "sudo apt-get install oracle-java8-installer"
notifications:
irc:
channels: chat.freenode.net#bitsquare