Skip to content

Commit

Permalink
revert reports
Browse files Browse the repository at this point in the history
  • Loading branch information
aburmeis committed Oct 29, 2024
1 parent f239219 commit 1e0a049
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.github.spotbugs.snom.SpotBugsTask

plugins {
id 'java-library'
id 'com.github.spotbugs' version '6.0.25'
Expand Down Expand Up @@ -43,7 +45,7 @@ tasks.withType(JavaCompile).configureEach {
}
}

// unit tests
// testing

test {
useJUnitPlatform {
Expand Down Expand Up @@ -116,6 +118,13 @@ publishing {

// code analysis

tasks.withType(SpotBugsTask).configureEach {
reports {
xml.required = false
html.required = true
}
}

jacocoTestCoverageVerification {
violationRules {
rule {
Expand Down

0 comments on commit 1e0a049

Please sign in to comment.