56542286eb
they were lost during the migration to gradle (cherry picked from commit 126a6a8)
30 lines
534 B
Kotlin
30 lines
534 B
Kotlin
|
|
description = "Kotlin Compiler (embeddable)"
|
|
|
|
plugins {
|
|
`java`
|
|
}
|
|
|
|
dependencies {
|
|
runtime(project(":kotlin-stdlib"))
|
|
runtime(project(":kotlin-script-runtime"))
|
|
runtime(project(":kotlin-reflect"))
|
|
}
|
|
|
|
noDefaultJar()
|
|
|
|
// dummy is used for rewriting dependencies to the shaded packages in the embeddable compiler
|
|
compilerDummyJar(compilerDummyForDependenciesRewriting("compilerDummy") {
|
|
classifier = "dummy"
|
|
})
|
|
|
|
runtimeJar(embeddableCompiler()) {
|
|
exclude("com/sun/jna/**")
|
|
}
|
|
|
|
sourcesJar()
|
|
javadocJar()
|
|
|
|
publish()
|
|
|