1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

build: add description and group to task

This commit is contained in:
Paul-Christian Volkmer 2024-11-02 15:03:43 +01:00
parent 3257493b6a
commit 5ce13e962b

View File

@ -130,6 +130,8 @@ task<Test>("integrationTest") {
} }
tasks.register("allTests") { tasks.register("allTests") {
description = "Run all tests"
group = JavaBasePlugin.VERIFICATION_GROUP
dependsOn(tasks.withType<Test>()) dependsOn(tasks.withType<Test>())
} }