253c5f2d9b
This prevents imports failure in projects using older versions of Gradle
24 lines
624 B
Kotlin
24 lines
624 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:cli-common"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(project(":idea:idea-gradle"))
|
|
compile(project(":idea:idea-maven"))
|
|
compileOnly(ideaPluginDeps("maven", "maven-server-api", plugin = "maven"))
|
|
compileOnly(ideaPluginDeps("gradle-tooling-api", "gradle", plugin = "gradle"))
|
|
compileOnly(ideaSdkDeps("openapi", "idea"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|