Interface MutableVersionConstraint
- All Superinterfaces:
- Describable,- VersionConstraint
- Since:
- 4.4
- 
Method SummaryModifier and TypeMethodDescriptionReturns the branch to select versions from.voidSets the preferred version of this module.voidDeclares a list of rejected versions.voidRejects all versions of this component.voidSets the required version of this module.voidSpecifies the branch to select versions from.voidSets the version as strict.Methods inherited from interface org.gradle.api.DescribablegetDisplayNameMethods inherited from interface org.gradle.api.artifacts.VersionConstraintgetPreferredVersion, getRejectedVersions, getRequiredVersion, getStrictVersion
- 
Method Details- 
getBranchReturns the branch to select versions from. When notnull, select only versions that were built from the given branch.- Specified by:
- getBranchin interface- VersionConstraint
- Since:
- 4.6
 
- 
setBranchSpecifies the branch to select versions from.- Parameters:
- branch- The branch, possibly null.
- Since:
- 4.6
 
- 
strictlySets the version as strict.Any version not matched by this version notation will be excluded. This is the strongest version declaration. It will cause dependency resolution to fail if no version acceptable by this clause can be selected. This term supports dynamic versions. This will override a previous requiredeclaration.This clears any set rejected versions. - Parameters:
- version- the strict version to be used for this module
 
- 
requireSets the required version of this module.Implies that the selected version cannot be lower than what requireaccepts but could be higher through conflict resolution, even if higher has an exclusive higher bound. This is what a direct dependency translates to. This term supports dynamic versions.This will override a previous strictlydeclaration.This clears any set rejected versions. - Parameters:
- version- the required version of this module
- Since:
- 5.0
 
- 
preferSets the preferred version of this module.This is a very soft version declaration. It applies only if there is no stronger non dynamic opinion on a version for the module. This term does not support dynamic versions. This can complement a strictlyorrequireindication.This clears any set rejected versions. - Parameters:
- version- the preferred version of this module
 
- 
rejectDeclares a list of rejected versions. If such a version is found during dependency resolution, it will not be selected. This term supports dynamic versions.- Parameters:
- versions- the rejected versions
- Since:
- 4.5
 
- 
rejectAllvoid rejectAll()Rejects all versions of this component. Can be used to make sure that if such a component is seen in a dependency graph, resolution fails.- Since:
- 4.5
 
 
-