Add group and description for tasks

This commit is contained in:
Benjamin Muschko 2016-11-06 09:32:37 -05:00
parent 65504adcb2
commit 5960d4d97d
2 changed files with 4 additions and 0 deletions

View File

@ -13,5 +13,7 @@ tasks.withType(Checkstyle) {
}
task checkstyle {
group = 'Verification'
description = 'Runs Checkstyle analysis for all classes.'
dependsOn tasks.withType(Checkstyle)
}

View File

@ -12,5 +12,7 @@ tasks.withType(FindBugs) {
}
task findbugs {
group = 'Verification'
description = 'Runs FindBugs analysis for all classes.'
dependsOn tasks.withType(FindBugs)
}