api / org.gradle.api.tasks / AntBuilderAware

AntBuilderAware

interface AntBuilderAware

An AntBuilderAware represents an object which can add itself to Ant tasks, using an org.gradle.api.AntBuilder.

Functions

addToAntBuilder

abstract fun addToAntBuilder(node: Any, childNodeName: String): Any

Inheritors

FileCollection

interface FileCollection : MutableIterable<File>, AntBuilderAware, Buildable

A FileCollection represents a collection of files which you can query in certain ways. A file collection is often used to define a classpath, or to add files to a container.

You can obtain a FileCollection instance using org.gradle.api.Project#files.

PatternSet

open class PatternSet : AntBuilderAware, PatternFilterable

Standalone implementation of PatternFilterable.