`dependsOn("other")` (passing a String) is lazy ri...
# community-support
a
dependsOn("other")
(passing a String) is lazy right? Or do I need
dependsOn(tasks.named("other"))
?
e
tasks.named requires that the other task is already registered, using the string form is lazier than that