From 17eab006086ef9cecf32c614c39f83a42fa685ab Mon Sep 17 00:00:00 2001 From: Pedro Geadas Date: Wed, 24 Jan 2024 09:38:33 +0100 Subject: [PATCH] Reverts compatibility of compileJava to 11 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index f59253c..e3420d3 100644 --- a/build.gradle +++ b/build.gradle @@ -24,8 +24,8 @@ java { } compileJava { - // Set binary compatibility for Java compiler to 17 - options.release.set(17) + // Set binary compatibility for Java compiler to 11 (worth checking to update this also) + options.release.set(11) } }