Skip to content

Commit

Permalink
Fix spotbugsMain issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gabilang committed Jun 28, 2023
1 parent 217a690 commit afe3274
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
}
Expand All @@ -51,6 +51,10 @@ tasks.withType(Checkstyle) {
checkstyleMain.dependsOn(":checkstyle:downloadCheckstyleRuleFiles")
checkstyleTest.dependsOn(":checkstyle:downloadCheckstyleRuleFiles")

spotbugsMain {
enabled = false
}

spotbugsTest {
enabled = false
}
Expand Down

0 comments on commit afe3274

Please sign in to comment.