f58acbeef5
Excludes stdlib projects from build and uses bootstrap stdlib artifacts #KT-29205
26 lines
411 B
Plaintext
26 lines
411 B
Plaintext
|
|
description = "Kotlin Gradle Tooling support"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(kotlinStdlib())
|
|
compile(project(":compiler:cli-common"))
|
|
compile(intellijPluginDep("gradle"))
|
|
compileOnly(intellijDep()) { includeJars("slf4j-api-1.7.10") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar()
|
|
|
|
ideaPlugin()
|