From 3f00a96a2a774367f47336fb5a5b662a826fe083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Thu, 17 Oct 2024 10:20:28 +0200 Subject: [PATCH] Allow building the project with JDK > 17 --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index bb02bbb..bf9584f 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,8 @@ plugins { subprojects { plugins.withType(JavaPlugin) { plugins.apply("io.spring.javaformat") + sourceCompatibility = "17" + targetCompatibility = "17" } if (!buildDir.toString().startsWith(project.rootDir.toString())) { buildDir = "$buildDir/$project.name"