From 5e2c58e74a8c8d53887281127318787923db50ab Mon Sep 17 00:00:00 2001 From: svc-excavator-bot Date: Wed, 1 May 2024 06:11:52 +0000 Subject: [PATCH] Excavator: Use baseline-java-versions to manage Java versions --- .circleci/template.sh | 2 -- build.gradle | 7 +++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/template.sh b/.circleci/template.sh index b3f867435..927020ff1 100644 --- a/.circleci/template.sh +++ b/.circleci/template.sh @@ -1,5 +1,3 @@ #!/usr/bin/env bash export CIRCLECI_TEMPLATE=java-library-oss export JDK=17 -export UNIT_TEST_11=true -export UNIT_TEST_15=true diff --git a/build.gradle b/build.gradle index f2850472b..3c4dc40da 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,7 @@ apply plugin: 'com.palantir.failure-reports' apply plugin: 'com.palantir.git-version' apply plugin: 'com.palantir.baseline' apply plugin: 'com.palantir.consistent-versions' +apply plugin: 'com.palantir.baseline-java-versions' version System.env.CIRCLE_TAG ?: gitVersion() @@ -48,8 +49,6 @@ subprojects { apply plugin: 'java-library' apply plugin: 'org.inferred.processors' - sourceCompatibility = 11 - targetCompatibility = 11 tasks.withType(Checkstyle).configureEach { enabled = false @@ -94,3 +93,7 @@ idea.project.ipr.withXml { xml -> ''')) } + +javaVersions { + libraryTarget = 11 +}