mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
28 lines
780 B
Kotlin
28 lines
780 B
Kotlin
description = "Kotlin Scripting Compiler extension providing code completion and static analysis (for using in embeddable mode)"
|
|
|
|
plugins { java }
|
|
|
|
dependencies {
|
|
embedded(project(":kotlin-scripting-ide-services-unshaded")) { isTransitive = false }
|
|
embedded(project(":idea:ide-common")) { isTransitive = false }
|
|
runtimeOnly(project(":kotlin-script-runtime"))
|
|
runtimeOnly(kotlinStdlib())
|
|
runtimeOnly(project(":kotlin-scripting-common"))
|
|
runtimeOnly(project(":kotlin-scripting-jvm"))
|
|
runtimeOnly(project(":kotlin-compiler-embeddable"))
|
|
runtimeOnly(project(":kotlin-scripting-compiler-embeddable"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" {}
|
|
}
|
|
|
|
publish()
|
|
|
|
noDefaultJar()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar()
|
|
javadocJar()
|