use of org.gradle.api.internal.tasks.AntGroovydoc in project gradle by gradle.
the class Groovydoc method getAntGroovydoc.
@Internal
public AntGroovydoc getAntGroovydoc() {
if (antGroovydoc == null) {
IsolatedAntBuilder antBuilder = getServices().get(IsolatedAntBuilder.class);
ClassPathRegistry classPathRegistry = getServices().get(ClassPathRegistry.class);
antGroovydoc = new AntGroovydoc(antBuilder, classPathRegistry);
}
return antGroovydoc;
}
Aggregations