From afe3274f6e9620cadf6e2b6f3ce607f7ac405f97 Mon Sep 17 00:00:00 2001 From: gabilang Date: Wed, 28 Jun 2023 16:31:23 +0530 Subject: [PATCH] Fix spotbugsMain issue --- test-utils/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test-utils/build.gradle b/test-utils/build.gradle index 50c65d6737..ab2f629e1c 100644 --- a/test-utils/build.gradle +++ b/test-utils/build.gradle @@ -38,7 +38,7 @@ dependencies { } checkstyle { - toolVersion '7.8.2' + toolVersion '10.12.0' configFile rootProject.file("build-config/checkstyle/build/checkstyle.xml") configProperties = ["suppressionFile" : file("${rootDir}/build-config/checkstyle/build/suppressions.xml")] } @@ -51,6 +51,10 @@ tasks.withType(Checkstyle) { checkstyleMain.dependsOn(":checkstyle:downloadCheckstyleRuleFiles") checkstyleTest.dependsOn(":checkstyle:downloadCheckstyleRuleFiles") +spotbugsMain { + enabled = false +} + spotbugsTest { enabled = false }