From 2ac318fbdcc6a484cc074c25d447c811f38a07c4 Mon Sep 17 00:00:00 2001 From: ajgeiss0702 Date: Tue, 19 Jul 2022 10:11:29 -0700 Subject: [PATCH] remove deprecated gradle thingy --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8bfd7ba..7844576 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,8 +27,8 @@ allprojects { failFast = true maxParallelForks = (Runtime.getRuntime().availableProcessors() - 1).takeIf { it > 0 } ?: 1 - reports.html.isEnabled = false - reports.junitXml.isEnabled = false + reports.html.required.set(false) + reports.junitXml.required.set(false) }