Package org.gradle.api.publish
Interface VariantVersionMappingStrategy
public interface VariantVersionMappingStrategy
Defines the version mapping strategy when publishing, for a specific variant.
- Since:
- 5.2
- 
Method SummaryModifier and TypeMethodDescriptionvoidfromResolutionOf(String configurationName) Declares that this variant should use versions from the resolution of the configuration provided as an argument.voidfromResolutionOf(Configuration configuration) Declares that this variant should use versions from the resolution of the configuration provided as an argument.voidDeclares that this variant should use versions from the resolution of a default configuration chosen by Gradle.
- 
Method Details- 
fromResolutionResultvoid fromResolutionResult()Declares that this variant should use versions from the resolution of a default configuration chosen by Gradle.
- 
fromResolutionOfDeclares that this variant should use versions from the resolution of the configuration provided as an argument.- Parameters:
- configuration- a resolvable configuration where to pick resolved version numbers
 
- 
fromResolutionOfDeclares that this variant should use versions from the resolution of the configuration provided as an argument.- Parameters:
- configurationName- a resolvable configuration name where to pick resolved version numbers
 
 
-