dev.gradleplugins.internal.DependencyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-development Show documentation
Show all versions of gradle-plugin-development Show documentation
Gradle plugin development plugins.
package dev.gradleplugins.internal;
import org.gradle.api.Project;
import org.gradle.api.artifacts.Dependency;
public interface DependencyFactory {
Dependency create(Object notation);
static DependencyFactory forProject(Project project) {
return new DefaultDependencyFactory(project.getDependencies());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy