Package org.gradle.api.java.archives
Interface ManifestMergeDetails
public interface ManifestMergeDetails
Details of a value being merged from two different manifests.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
exclude()
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.void
Set's the value for the key of the manifest after the merge takes place.
-
Method Details
-
getSection
String getSection()Returns the section this merge details belongs to. -
getKey
String getKey()Returns the key that is to be merged. -
getBaseValue
String getBaseValue()Returns the value for the key of the manifest that is the target of the merge. -
getMergeValue
String getMergeValue()Returns the value for the key of the manifest that is the source for the merge. -
getValue
String 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. -
setValue
Set's the value for the key of the manifest after the merge takes place. -
exclude
void exclude()Excludes this key from being in the manifest after the merge.
-