From afba967fcfcd66caa826cd37cef6d286d67c5236 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Sat, 8 Apr 2017 12:11:12 +0300 Subject: [PATCH] Use kotlin-stdlib.jar instead of kotlin-runtime.jar as runtime during build --- build.xml | 18 +++++++++--------- libraries/tools/kotlin-reflect/build.gradle | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.xml b/build.xml index 7d7bfe85aac..3864a9ccb86 100644 --- a/build.xml +++ b/build.xml @@ -9,7 +9,7 @@ - + @@ -36,16 +36,16 @@ + value="kotlin-stdlib-internal-bootstrap.jar kotlin-reflect-internal-bootstrap.jar kotlin-script-runtime-internal-bootstrap.jar" + else="kotlin-stdlib.jar kotlin-reflect.jar kotlin-script-runtime.jar"> @@ -187,18 +187,18 @@ - + - + - + @@ -293,7 +293,7 @@ - + diff --git a/libraries/tools/kotlin-reflect/build.gradle b/libraries/tools/kotlin-reflect/build.gradle index cbdee96f00f..0afaf8ac767 100644 --- a/libraries/tools/kotlin-reflect/build.gradle +++ b/libraries/tools/kotlin-reflect/build.gradle @@ -85,7 +85,7 @@ task reflectShadowJar(type: ShadowJar) { classifier = 'shadow' version = null manifestAttributes(manifest, project, 'Main') - manifest.attributes 'Class-Path': 'kotlin-runtime.jar' // TODO replace soon with 'kotlin-stdlib.jar' + manifest.attributes 'Class-Path': 'kotlin-stdlib.jar' from (sourceSets.main.output) from ("${core}/descriptor.loader.java/src") {