We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e12c1 commit 1f29940Copy full SHA for 1f29940
build.gradle
@@ -124,13 +124,19 @@ spotbugs {
124
ignoreFailures = false
125
}
126
127
+// Aggregate SpotBugs task
128
+tasks.register("spotbugs") {
129
+ group = "verification"
130
+ description = "Run all SpotBugs analysis tasks"
131
+ dependsOn("spotbugsMain", "spotbugsTest")
132
+}
133
134
// ===== BUILD LIFECYCLE INTEGRATION =====
135
// The standard 'check' task will now run all quality gates
136
137
tasks.named('check') {
138
dependsOn jacocoTestCoverageVerification
- dependsOn tasks.named('spotlessCheck')
139
dependsOn tasks.named('checkstyleMain')
- dependsOn tasks.named('spotbugsMain')
140
+ dependsOn tasks.named('checkstyleTest')
141
+ dependsOn tasks.named('spotbugs')
142
0 commit comments