use of org.gradle.api.internal.artifacts.DefaultDependencySet in project gradle by gradle.
the class DefaultConfiguration method initAllDependencies.
private synchronized void initAllDependencies() {
if (allDependencies != null) {
return;
}
inheritedDependencies = CompositeDomainObjectSet.create(Dependency.class, ownDependencies);
for (Configuration configuration : this.extendsFrom) {
inheritedDependencies.addCollection(configuration.getAllDependencies());
}
allDependencies = new DefaultDependencySet(Describables.of(displayName, "all dependencies"), this, inheritedDependencies);
}
Aggregations