List of available ant functions that can be called from gradle

Ive looked through the documentation but Im having some trouble finding a list of available ant functions with samples on how to use them. Does such a list exist? Ive already read through most of this

http://www.gradle.org/docs/current/userguide/ant.html#N11582

But I didnt really see any good examples.

You’ll have to look at the Ant documentation for more information on available tasks. Gradle’s ‘AntBuilder’ simply exposes the Ant functionality so you can call any standard Ant task via ‘ant.{task_name}’. You can additionally add new tasks with ‘ant.taskDef’ just as you would in a regular Ant ‘build.xml’.