How can I change the description of an existing Gradle task? I have tried
tasks.idea.doFirst {
description = "asda"
}
and
tasks.idea.doLast {
description = "asda"
}
but neither change the decription listed when I run gradle tasks.
You have to set the description in the configuration phase:
tasks.idea {
description = "asda"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With