I am wondering about the following pieces of Gradle scripts:
task name
task 'name'
task name {...}
task 'name' {...}
I am looking at the Project
methods as well as TaskContainer
methods, but it is not obvious how the task ...
is transformed into a method call.