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 }