From 4a1916621a67c1bbf45f41118787288a696a9a57 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Wed, 21 Dec 2022 10:30:51 +0100 Subject: SONAR-17566 Drop jdk11 support for running the SonarQube server --- sonar-plugin-api-impl/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sonar-plugin-api-impl') diff --git a/sonar-plugin-api-impl/build.gradle b/sonar-plugin-api-impl/build.gradle index 3b9fde8eced..51480338d9d 100644 --- a/sonar-plugin-api-impl/build.gradle +++ b/sonar-plugin-api-impl/build.gradle @@ -34,6 +34,11 @@ processResources { artifactoryPublish.skip = false +// Produce Java 11 bytecode while making sure the code does not use any APIs from Java 17 +tasks.withType(JavaCompile) { + options.release = 11 +} + publishing { publications { mavenJava(MavenPublication) { -- cgit v1.2.3