blob: f0d26ef04c499eb4e2f069a1ee7e50167764cf26 [file] [log] [blame]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":compiler:backend"))
compile(project(":idea:ide-common"))
compileOnly(toolsJarApi())
compileOnly(intellijDep())
compileOnly(intellijPluginDep("java"))
compileOnly(intellijPluginDep("stream-debugger"))
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}