Hi all,
Here is my code println “this will always runs first” task buildMoped << {
ant.importBuild(‘build.xml’)
println “Done importing”
}
task testGradle(dependsOn: ‘init’ ) << {
if i do gradle tasks -all I see init listed as an other task but when I call testGradle it fails telling me that it can’t resolve dependencies of testGradle. What is wrong?