fix gradle property enabled deprecation warning

This commit is contained in:
dfsek
2021-07-23 16:06:34 -07:00
parent f987ffa6d0
commit 8751346693
+2 -2
View File
@@ -23,8 +23,8 @@ allprojects {
failFast = true failFast = true
maxParallelForks = (Runtime.getRuntime().availableProcessors() - 1).takeIf { it > 0 } ?: 1 maxParallelForks = (Runtime.getRuntime().availableProcessors() - 1).takeIf { it > 0 } ?: 1
reports.html.isEnabled = false reports.html.required.set(false)
reports.junitXml.isEnabled = false reports.junitXml.required.set(false)
} }
} }