Skip to content

Commit

Permalink
Fixed Gradle deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 committed Jul 6, 2021
1 parent cdfb781 commit 87d1fd1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,22 +92,22 @@ checkstyle {

tasks.withType(Checkstyle) {
reports {
xml.enabled false
html.enabled true
xml.required = false
html.required = true
}
}

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

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

Expand Down

0 comments on commit 87d1fd1

Please sign in to comment.