Files
kotlin-fork/compiler/tests-ir-jvm/build.gradle.kts
T
2018-02-05 12:07:36 +01:00

19 lines
400 B
Kotlin

apply { plugin("kotlin") }
dependencies {
testRuntime(intellijDep())
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-script-runtime"))
testCompile(projectDist(":kotlin-stdlib"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
projectTest {
workingDir = rootDir
}