From 2f6cc2f4f1bc4efe84d5827a26b540b4e553ece8 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 6 Sep 2024 03:20:08 -0700 Subject: [PATCH] Try to tell gradle to only use java 8 for this project --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index b8c7e07..361a61f 100644 --- a/build.gradle +++ b/build.gradle @@ -73,4 +73,5 @@ test { tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation + options.release = 8 }