Package org.gradle.language
Interface ComponentDependencies
- All Known Subinterfaces:
- LibraryDependencies
public interface ComponentDependencies
Allows the implementation dependencies of a component to be specified.
- Since:
- 4.6
- 
Method SummaryModifier and TypeMethodDescriptionvoidimplementation(Object notation) Adds an implementation dependency to this component.voidimplementation(Object notation, Action<? super ExternalModuleDependency> action) Adds an implementation dependency to this component.
- 
Method Details- 
implementationAdds an implementation dependency to this component. An implementation dependency is not visible to consumers that are compiled against this component.- Parameters:
- notation- The dependency notation, as per- DependencyHandler.create(Object).
 
- 
implementationAdds an implementation dependency to this component. An implementation dependency is not visible to consumers that are compiled against this component.- Parameters:
- notation- The dependency notation, as per- DependencyHandler.create(Object).
- action- The action to run to configure the dependency.
 
 
-