By default Gradle masks a lot of console output, both for its own task and any imported ant tasks. You can enable successively higher levels of logging with the -i (info) and -d (debug) flags when running the tasks.
You should be able to run your task by wrapping the name in quotes : 'oahu-jar'.execute() Is there any special reason why you're calling .execute() directly? You should be able to just add a dependency and then call your task directly. i.e. common.dependsOn installThirdParty -- View this message in context: http://gradle.1045684.n5.nabble.com/Is-it-possible-to-execute-imported-ANT-tasks-in-a-more-verbose-mode-from-Gradle-tp4912796p4914214.html Sent from the gradle-user mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
