Package org.gradle.normalization
Interface MetaInfNormalization
public interface MetaInfNormalization
Configuration of manifest normalization.
- Since:
- 6.6
-
Method Summary
Modifier and TypeMethodDescriptionvoid
ignoreAttribute
(String name) Ignore attributes inMETA-INF/MANIFEST.MF
within archives matchingname
.void
Ignore all files and subdirectories in theMETA-INF
directory within archives.void
Ignore theMETA-INF/MANIFEST.MF
file within archives.void
ignoreProperty
(String name) Ignore keys in properties files stored inMETA-INF
within archives matchingname
.
-
Method Details
-
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
Ignore attributes inMETA-INF/MANIFEST.MF
within archives matchingname
.name
is matched case-insensitively with the manifest attribute name.- Since:
- 6.6
-
ignoreProperty
Ignore keys in properties files stored inMETA-INF
within archives matchingname
.name
is matched case-sensitively with the property key.- Since:
- 6.6
-