Package org.gradle.api.java.archives
Interface ManifestMergeDetails
public interface ManifestMergeDetails
Details of a value being merged from two different manifests.
- 
Method SummaryModifier and TypeMethodDescriptionvoidexclude()Excludes this key from being in the manifest after the merge.Returns the value for the key of the manifest that is the target of the merge.getKey()Returns the key that is to be merged.Returns the value for the key of the manifest that is the source for the merge.Returns the section this merge details belongs to.getValue()Returns the value for the key of the manifest after the merge takes place.voidSet's the value for the key of the manifest after the merge takes place.
- 
Method Details- 
getSectionString getSection()Returns the section this merge details belongs to.
- 
getKeyString getKey()Returns the key that is to be merged.
- 
getBaseValueString getBaseValue()Returns the value for the key of the manifest that is the target of the merge.
- 
getMergeValueString getMergeValue()Returns the value for the key of the manifest that is the source for the merge.
- 
getValueString getValue()Returns the value for the key of the manifest after the merge takes place. By default this is the value of the source for the merge.
- 
setValueSet's the value for the key of the manifest after the merge takes place.
- 
excludevoid exclude()Excludes this key from being in the manifest after the merge.
 
-