I'm currently learning how to use Gradle task
API to build java projects.
I understand that
apply plugin: 'java'
is the shorthand syntax for
project.apply(['plugin': 'java'])
I find the full syntax a bit more intuitive and easier to understand
So, what is the FULL syntax for
task helloWorld {
doLast {
println("hello world")
}
}