Is there a good way to refer to the `run` task? Si...
# gradle
m
Is there a good way to refer to the
run
task? Since
run
is an extension function on everything, configuring the task with a closure is non-obvious. Currently I'm using
named<JavaExec>("run")
which is workable but ugly
m
Copy code
tasks {
   (run) {
   }
}
i believe is one way that works
👍 1
m
Ah, sneaky!