I know there are some Groovy syntax under the Gradle. like following command:
task myTask { configure closure }
will become: task(name, configureClosure)
But how about:
task myTask(type: SomeType) { configure closure }
How this command translate to Groovy task command?
Thanks.
↧
What is the Groovy magic for this task command
↧