From ec2e7bb43c858f0d9c7a0df167f07fb66923144a Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 8 Sep 2017 07:44:51 +0300 Subject: [PATCH] Fix manifest classpath in kotlin-compiler --- prepare/compiler/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare/compiler/build.gradle.kts b/prepare/compiler/build.gradle.kts index ff30248d078..8a566bd427d 100644 --- a/prepare/compiler/build.gradle.kts +++ b/prepare/compiler/build.gradle.kts @@ -24,7 +24,7 @@ plugins { // Set to false to disable proguard run on kotlin-compiler.jar. Speeds up the build val shrink = true val compilerManifestClassPath = - "kotlin-runtime.jar kotlin-reflect.jar kotlin-script-runtime.jar" + "kotlin-stdlib.jar kotlin-reflect.jar kotlin-script-runtime.jar" val fatJarContents by configurations.creating val fatSourcesJarContents by configurations.creating