plugins { kotlin("jvm") id("jps-compatible") } dependencies { compile(project(":core:util.runtime")) compile(project(":compiler:frontend")) compile(project(":compiler:frontend.java")) compile(project(":js:js.frontend")) compileOnly(project(":kotlin-reflect-api")) compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) } } sourceSets { "main" { projectDefault() } "test" {} }