Files
kotlin-fork/prepare/compiler-embeddable/build.gradle.kts
T
Ilya Chernikov 56542286eb Bring back filtering of jna and shading of jline in embeddable compiler
they were lost during the migration to gradle

(cherry picked from commit 126a6a8)
2017-11-20 19:59:40 +01:00

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()