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 Summary
Modifier 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
- 
implementation
Adds 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 perDependencyHandler.create(Object).
 - 
implementation
Adds 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 perDependencyHandler.create(Object).action- The action to run to configure the dependency.
 
 -