Slackbot
03/28/2022, 7:19 PMTapchicoma
03/28/2022, 7:31 PMgradle help --task "taskName"
MMD
03/28/2022, 7:39 PMNiels Doucet
03/29/2022, 7:19 AMtasks.withType(YourType::class) {
// do what you want here
doLast {
// after all other actions for the task
}
doFirst {
// before all other actions for the task
}
}
MMD
03/29/2022, 7:55 PMMMD
03/29/2022, 7:56 PM