mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
it conflicts with the compilation on daemon, so transistion should be planned accordingly, and now it is not a good time for it. The most important part of the renaming remains intact. Partially reverts commit "Rename scripting libs and plugin - invert embeddable suffix"
28 lines
756 B
Kotlin
28 lines
756 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 }
|
|
runtime(project(":kotlin-script-runtime"))
|
|
runtime(kotlinStdlib())
|
|
runtime(project(":kotlin-scripting-common"))
|
|
runtime(project(":kotlin-scripting-jvm"))
|
|
runtime(project(":kotlin-compiler-embeddable"))
|
|
runtime(project(":kotlin-scripting-compiler-embeddable"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" {}
|
|
}
|
|
|
|
publish()
|
|
|
|
noDefaultJar()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar()
|
|
javadocJar()
|