Run sonarqube under JDK 14, Java 8 support is ending.

This commit is contained in:
Erik C. Thauvin 2020-06-09 20:56:28 -07:00
parent 1a6b9a2262
commit 6653b6502e

View file

@ -21,6 +21,6 @@ before_install:
after_success:
- |
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk14" ]; then
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk14" ]; then
./gradlew sonarqube
fi