From 20ba8fcad080c61c8485fc34455e71eca1b8cabc Mon Sep 17 00:00:00 2001 From: cpovirk Date: Wed, 2 Oct 2019 15:08:03 -0700 Subject: [PATCH] Update Travis JDK to JDK11. This is an attempt to fix the error: install-jdk.sh 2019-09-17 Expected feature release number in range of 9 to 14, but got: 8 The command "~/bin/install-jdk.sh --target "/home/travis/oraclejdk8" --workspace "/home/travis/.cache/install-jdk" --feature "8" --license "BCL"" failed and exited with 3 during . It is similar to CL 253584474 RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=272528889 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 54394965..bba2ae95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false language: java jdk: - - oraclejdk8 + - oraclejdk11 install: mvn install -U -DskipTests=true