From 560e81edf081f88f025829e1fd4e00211c729fa9 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Tue, 3 Sep 2024 10:44:38 -0700 Subject: [PATCH] build.gradle: remove sourceCompatibility/targetCompatibility We will never be compiling with JDK 8 (although we may end up _targeting_ Java 8) --- build.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.gradle b/build.gradle index 2575106..1833286 100644 --- a/build.gradle +++ b/build.gradle @@ -23,8 +23,6 @@ subprojects { } java { - sourceCompatibility = JavaVersion.toVersion("22") - targetCompatibility = JavaVersion.toVersion("22") toolchain { // `languageVersion` is used to configure the "Java Toolchain" used for the build. This includes `javac`, // `jlink`, and the `jpackage` tool.