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"
51 lines
1.5 KiB
Kotlin
51 lines
1.5 KiB
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
val allTestsRuntime by configurations.creating
|
|
val testCompile by configurations
|
|
testCompile.extendsFrom(allTestsRuntime)
|
|
val embeddableTestRuntime by configurations.creating {
|
|
extendsFrom(allTestsRuntime)
|
|
}
|
|
|
|
dependencies {
|
|
allTestsRuntime(commonDep("junit"))
|
|
testCompile(project(":kotlin-scripting-ide-services-unshaded"))
|
|
testCompile(project(":kotlin-scripting-compiler"))
|
|
testCompile(project(":compiler:cli-common"))
|
|
|
|
testRuntimeOnly(project(":kotlin-compiler"))
|
|
testRuntimeOnly(commonDep("org.jetbrains.intellij.deps", "trove4j"))
|
|
testRuntimeOnly(project(":idea:ide-common")) { isTransitive = false }
|
|
|
|
embeddableTestRuntime(project(":kotlin-scripting-ide-services"))
|
|
embeddableTestRuntime(project(":kotlin-compiler-embeddable"))
|
|
embeddableTestRuntime(testSourceSet.output)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {
|
|
kotlinOptions.freeCompilerArgs += "-Xallow-kotlin-package"
|
|
}
|
|
|
|
projectTest(parallel = true) {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|
|
|
|
// This doesn;t work now due to conflicts between embeddable compiler contents and intellij sdk modules
|
|
// To make it work, the dependencies to the intellij sdk should be eliminated
|
|
projectTest(taskName = "embeddableTest", parallel = true) {
|
|
workingDir = rootDir
|
|
dependsOn(embeddableTestRuntime)
|
|
classpath = embeddableTestRuntime
|
|
}
|