Added openjdk15 on TavisCI

This commit is contained in:
Erik C. Thauvin 2021-03-20 13:46:52 -07:00
parent 4f21120e51
commit 64920df1fc
2 changed files with 3 additions and 3 deletions

View file

@ -14,13 +14,13 @@ addons:
jdk:
- oraclejdk8
- openjdk14
- openjdk15
before_install:
- chmod +x gradlew
after_success:
- |
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk14" ]; then
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk15" ]; then
./gradlew sonarqube
fi

View file

@ -128,7 +128,7 @@ tasks {
}
register("release") {
description = "Publishes version ${project.version} to Maven Central."
description = "Publishes version ${project.version} to local repository."
group = PublishingPlugin.PUBLISH_TASK_GROUP
dependsOn("wrapper", "deploy", "gitTag", "publishToMavenLocal")
}