From 392e5a6edd9b7e74e4cf1b0e05b19673d25b2821 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Tue, 14 Jan 2020 19:02:24 +0300 Subject: [PATCH] Build: Make :kotlin-compiler:proguard task cacheable --- prepare/compiler/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/prepare/compiler/build.gradle.kts b/prepare/compiler/build.gradle.kts index b5114818774..b651eaf6720 100644 --- a/prepare/compiler/build.gradle.kts +++ b/prepare/compiler/build.gradle.kts @@ -251,6 +251,7 @@ val proguard by task { inputs.files(packCompiler.get().outputs.files.singleFile) outputs.file(outputJar) + outputs.cacheIf { true } libraryjars(mapOf("filter" to "!META-INF/versions/**"), proguardLibraries)