Package org.gradle.normalization
Interface MetaInfNormalization
-
public interface MetaInfNormalization
Configuration of manifest normalization.- Since:
- 6.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
ignoreAttribute(java.lang.String name)
Ignore attributes inMETA-INF/MANIFEST.MF
within archives matchingname
.void
ignoreCompletely()
Ignore all files and subdirectories in theMETA-INF
directory within archives.void
ignoreManifest()
Ignore theMETA-INF/MANIFEST.MF
file within archives.void
ignoreProperty(java.lang.String name)
Ignore keys in properties files stored inMETA-INF
within archives matchingname
.
-
-
-
Method Detail
-
ignoreCompletely
void ignoreCompletely()
Ignore all files and subdirectories in theMETA-INF
directory within archives.- Since:
- 6.6
-
ignoreManifest
void ignoreManifest()
Ignore theMETA-INF/MANIFEST.MF
file within archives.- Since:
- 6.6
-
ignoreAttribute
void ignoreAttribute(java.lang.String name)
Ignore attributes inMETA-INF/MANIFEST.MF
within archives matchingname
.name
is matched case-insensitively with the manifest attribute name.- Since:
- 6.6
-
ignoreProperty
void ignoreProperty(java.lang.String name)
Ignore keys in properties files stored inMETA-INF
within archives matchingname
.name
is matched case-sensitively with the property key.- Since:
- 6.6
-
-