mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +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"
42 lines
1.1 KiB
Kotlin
42 lines
1.1 KiB
Kotlin
|
|
description = "Kotlin Scripting Compiler extension providing code completion and static analysis"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
publish()
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-script-runtime"))
|
|
compile(kotlinStdlib())
|
|
compileOnly(project(":idea:ide-common"))
|
|
compile(project(":kotlin-scripting-common"))
|
|
compile(project(":kotlin-scripting-jvm"))
|
|
compileOnly(project(":kotlin-scripting-compiler"))
|
|
compileOnly(project(":compiler:cli"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
publishedRuntime(project(":kotlin-compiler"))
|
|
publishedRuntime(project(":kotlin-scripting-compiler"))
|
|
publishedRuntime(project(":kotlin-reflect"))
|
|
publishedRuntime(commonDep("org.jetbrains.intellij.deps", "trove4j"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {
|
|
kotlinOptions {
|
|
freeCompilerArgs += "-Xskip-metadata-version-check"
|
|
freeCompilerArgs += "-Xallow-kotlin-package"
|
|
}
|
|
}
|
|
|
|
standardPublicJars()
|