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