|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.artifacts.Dependency org.gradle.api.artifacts.ModuleDependency
public interface ModuleDependency extends Dependency
A ModuleDependency is a Dependency on a module outside the current project.
For examples on configuring the exclude rules please refer to exclude(java.util.Map).
Field Summary |
---|
Fields inherited from interface Dependency | |
---|---|
ARCHIVES_CONFIGURATION, CLASSIFIER, DEFAULT_CONFIGURATION |
Method Summary | |
---|---|
ModuleDependency
|
addArtifact(DependencyArtifact artifact)
|
DependencyArtifact
|
artifact(Closure configureClosure)
|
ModuleDependency
|
copy()
{@inheritDoc} |
ModuleDependency
|
exclude(Map excludeProperties)
Adds an exclude rule to exclude transitive dependencies of this dependency. |
Set
|
getArtifacts()
Returns the artifacts belonging to this dependency. |
String
|
getConfiguration()
Returns the configuration of this dependency module (not the configurations this dependency belongs too). |
Set
|
getExcludeRules()
Returns the exclude rules for this dependency. |
boolean
|
isTransitive()
Returns whether this dependency should be resolved including or excluding its transitive dependencies. |
ModuleDependency
|
setTransitive(boolean transitive)
Sets whether this dependency should be resolved including or excluding its transitive dependencies. |
Methods inherited from interface Dependency | |
---|---|
contentEquals, copy, getGroup, getName, getVersion |
Method Detail |
---|
public ModuleDependency addArtifact(DependencyArtifact artifact)
Adds an artifact to this dependency.
If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the same name as the module and its type and extension is jar. If at least one artifact is explicitly added, the implicit default artifact won't be used any longer.
public DependencyArtifact artifact(Closure configureClosure)
Adds an artifact to this dependency. The given closure is passed a DependencyArtifact instance, which it can configure.
If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the same name as the module and its type and extension is jar. If at least one artifact is explicitly added, the implicit default artifact won't be used any longer.
public ModuleDependency copy()
public ModuleDependency exclude(Map excludeProperties)
Excluding a particular transitive dependency does not guarantee that it does not show up in the dependencies of a given configuration. For example, some other dependency, which does not have any exclude rules, might pull in exactly the same transitive dependency. To guarantee that the transitive dependency is excluded from the entire configuration please use per-configuration exclude rules: Configuration#getExcludeRules()#getExcludeRules(). In fact, in majority of cases the actual intention of configuring per-dependency exclusions is really excluding a dependency from the entire configuration (or classpath).
If your intention is to exclude a particular transitive dependency because you don't like the version it pulls in to the configuration then consider using forced versions' feature: ResolutionStrategy.force.
apply plugin: 'java' //so that I can declare 'compile' dependencies dependencies { compile('org.hibernate:hibernate:3.1') { //excluding a particular transitive dependency: exclude module: 'cglib' //by artifact name exclude group: 'org.jmock' //by group exclude group: 'org.unwanted', module: 'iAmBuggy' //by both name and group } }
excludeProperties
- the properties to define the exclude rule.
public Set getArtifacts()
public String getConfiguration()
public Set getExcludeRules()
public boolean isTransitive()
public ModuleDependency setTransitive(boolean transitive)
transitive
- Whether transitive dependencies should be resolved.
Gradle API 1.12