Implemented StatusCode bean. Closes #5
This commit is contained in:
parent
12936688ae
commit
95f4c9714e
6 changed files with 306 additions and 15 deletions
|
@ -103,6 +103,7 @@ test {
|
|||
spotbugs {
|
||||
toolVersion = versions.spotbugs
|
||||
excludeFilter = file("$projectDir/config/spotbugs/excludeFilter.xml")
|
||||
|
||||
}
|
||||
|
||||
pmd {
|
||||
|
@ -120,6 +121,13 @@ tasks.withType(Checkstyle) {
|
|||
}
|
||||
}
|
||||
|
||||
tasks.withType(SpotBugsTask) {
|
||||
reports {
|
||||
xml.enabled = false
|
||||
html.enabled = true
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue