blob: 3f89e93023939f9909c9158536040235ec1fcce8 [file] [log] [blame]
plugins {
kotlin("jvm")
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(intellijDep()) { includeJars("util") }
testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-stdlib"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}