Skip to content

Commit 5960d4d

Browse files
committed
Add group and description for tasks
1 parent 65504ad commit 5960d4d

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

gradle/checkstyle.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ tasks.withType(Checkstyle) {
1313
}
1414

1515
task checkstyle {
16+
group = 'Verification'
17+
description = 'Runs Checkstyle analysis for all classes.'
1618
dependsOn tasks.withType(Checkstyle)
1719
}

gradle/findbugs.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ tasks.withType(FindBugs) {
1212
}
1313

1414
task findbugs {
15+
group = 'Verification'
16+
description = 'Runs FindBugs analysis for all classes.'
1517
dependsOn tasks.withType(FindBugs)
1618
}

0 commit comments

Comments
 (0)