25 lines
522 B
Kotlin
25 lines
522 B
Kotlin
|
|
description = "Kotlin \"main\" script definition tests"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
testCompile(project(":kotlin-main-kts"))
|
|
testCompileOnly(project(":compiler:cli"))
|
|
testCompileOnly(project(":kotlin-scripting-jvm-host"))
|
|
testCompile(commonDep("junit"))
|
|
testCompile(projectTests(":kotlin-scripting-compiler")) { isTransitive = false }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest(parallel = true) {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|