Use kotlin-stdlib.jar instead of kotlin-runtime.jar as runtime during build

This commit is contained in:
Ilya Gorbunov
2017-04-08 12:11:12 +03:00
parent 655fe87d43
commit afba967fcf
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -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") {