| 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() } | |
| } |