Build: Ignore META-INF/MANIFEST.MF from classpath normalization

We are writing build numbers there which breaks caching
This commit is contained in:
Vyacheslav Gerasimov
2020-02-06 19:51:59 +03:00
parent d5c851980c
commit f8437743c5
+6
View File
@@ -390,6 +390,12 @@ allprojects {
outputs.doNotCacheIf("https://youtrack.jetbrains.com/issue/KT-37089") { true }
}
normalization {
runtimeClasspath {
ignore("META-INF/MANIFEST.MF")
}
}
tasks {
register("listArchives") { listConfigurationContents("archives") }