Skip to content

Commit

Permalink
Use html reports over xml
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 committed Apr 13, 2021
1 parent 4e56de5 commit 1db20c9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,21 @@ checkstyle {
tasks.withType(Checkstyle) {
reports {
xml.enabled false
html.enabled false
html.enabled true
}
}

spotbugsMain {
reports {
xml.enabled false
html.enabled true
}
}

spotbugsTest {
reports {
xml.enabled false
html.enabled true
}
}

Expand Down

0 comments on commit 1db20c9

Please sign in to comment.