I’m trying to run my first gradle example.
I created build.gradle file:
task hello {
doLast {
println 'Hello world!'
}
}
I run the script: gradle -q hello
and I’m getting an error:
FAILURE: Build failed with an exception.
someone can assist?