From a064b59a7d7e9d94d223eeaad31d3768801bc0fc Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 20 Jun 2017 17:54:22 +0300 Subject: [PATCH] Do not put "Class-Path: kotlin-stdlib.jar" into kotlin-reflect manifest Since the kotlin-reflect artifact might be used in environments where the kotlin-stdlib artifact is named something else (e.g. kotlin-stdlib-{version}.jar) and the file existence is verified by the launcher #KT-16399 Fixed --- libraries/tools/kotlin-reflect/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/tools/kotlin-reflect/build.gradle b/libraries/tools/kotlin-reflect/build.gradle index 2bfde74fb00..8ffd8564790 100644 --- a/libraries/tools/kotlin-reflect/build.gradle +++ b/libraries/tools/kotlin-reflect/build.gradle @@ -85,7 +85,6 @@ task reflectShadowJar(type: ShadowJar) { classifier = 'shadow' version = null manifestAttributes(manifest, project, 'Main') - manifest.attributes 'Class-Path': 'kotlin-stdlib.jar' from (sourceSets.main.output) from ("${core}/descriptor.loader.java/src") {