Join Slack
Powered by
How can I ensure that a custom task created with `...
# gradle
t
tyrondis
03/21/2021, 5:08 PM
How can I ensure that a custom task created with
tasks.register()
runs as part of the
check
lifecycle in Gradle's Kotlin DSL?
e
ephemient
03/21/2021, 5:10 PM
Copy code
tasks.named("check") { dependsOn("myCustomTask") }
t
tyrondis
03/21/2021, 5:12 PM
Thanks! That works! 🙂
4
Views
Open in Slack
Previous
Next