mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
27 lines
678 B
Kotlin
27 lines
678 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:cli-common"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-jvm"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(project(":idea:idea-gradle"))
|
|
compile(project(":idea:idea-maven"))
|
|
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
compileOnly(intellijDep())
|
|
compileOnly(project(":idea:kotlin-gradle-tooling"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|