JPS Build: rename packedJars property to embedded
This commit is contained in:
@@ -6,10 +6,10 @@ description = "Kotlin Scripting JVM host (for using with embeddable compiler)"
|
|||||||
|
|
||||||
plugins { java }
|
plugins { java }
|
||||||
|
|
||||||
val packedJars by configurations.creating
|
val embedded by configurations.creating
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
packedJars(project(":kotlin-scripting-jvm-host")) { isTransitive = false }
|
embedded(project(":kotlin-scripting-jvm-host")) { isTransitive = false }
|
||||||
runtime(project(":kotlin-script-runtime"))
|
runtime(project(":kotlin-script-runtime"))
|
||||||
runtime(kotlinStdlib())
|
runtime(kotlinStdlib())
|
||||||
runtime(project(":kotlin-scripting-common"))
|
runtime(project(":kotlin-scripting-common"))
|
||||||
@@ -30,7 +30,7 @@ noDefaultJar()
|
|||||||
|
|
||||||
runtimeJar(rewriteDepsToShadedCompiler(
|
runtimeJar(rewriteDepsToShadedCompiler(
|
||||||
task<ShadowJar>("shadowJar") {
|
task<ShadowJar>("shadowJar") {
|
||||||
from(packedJars)
|
from(embedded)
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
sourcesJar()
|
sourcesJar()
|
||||||
|
|||||||
Reference in New Issue
Block a user