From 4a920915c55e3d0e86806482bec736554315100b Mon Sep 17 00:00:00 2001 From: Ryan Dens Date: Tue, 13 Jul 2021 09:03:10 -0400 Subject: [PATCH] :bug: set Java 8 release compiler option (#334) --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 09f5c907e..fb8f011d2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,6 +18,7 @@ allprojects { tasks.withType { options.compilerArgs.add("-Xlint:unchecked") options.isDeprecation = true + options.release.set(8) } }