From f8437743c55fd1fb60ef4ec524d3a5f00ac2a533 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 6 Feb 2020 19:51:59 +0300 Subject: [PATCH] Build: Ignore META-INF/MANIFEST.MF from classpath normalization We are writing build numbers there which breaks caching --- build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index fa212a05cff..9a3d83627b3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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") }