aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorEric Hartmann <hartmann.eric@gmail.com>2018-10-25 10:44:17 +0200
committerSonarTech <sonartech@sonarsource.com>2018-10-25 10:47:35 +0200
commitf2c45cb6b6a713231db26c71122923bc62d1466e (patch)
tree592e0ea5cb748e40b9e1a294f04b8d8d81d7e3fa /travis.sh
parentba52896830cdcf9e265a1fdddb154b3144b558d8 (diff)
downloadsonarqube-f2c45cb6b6a713231db26c71122923bc62d1466e.tar.gz
sonarqube-f2c45cb6b6a713231db26c71122923bc62d1466e.zip
Upgrade Travis to download JDK 8u191
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/travis.sh b/travis.sh
index f693ccb43a0..1a4386a1181 100755
--- a/travis.sh
+++ b/travis.sh
@@ -11,14 +11,14 @@ set -euo pipefail
#
installJdk8() {
# copied from https://github.com/SonarSource/travis-utils/blob/master/bin/installJDK8
- JDK_RELEASE=181
+ JDK_RELEASE=191
echo "Setup JDK 1.8u$JDK_RELEASE"
mkdir -p ~/jvm
pushd ~/jvm > /dev/null
if [ ! -d "jdk1.8.0_$JDK_RELEASE" ]; then
{
- wget --quiet --continue --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jdk-8u181-linux-x64.tar.gz
+ wget --quiet --continue --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jdk-8u191-linux-x64.tar.gz
} || {
echo "failed to download JDK 1.8u$JDK_RELEASE"
exit 1