8203d1c3fe
This change is required to have possibility to build plugin against minor IDEs, which don't have Java. So we want to extract idea-jvm
20 lines
393 B
Kotlin
20 lines
393 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(projectDist(":kotlin-stdlib"))
|
|
compile(project(":core:deserialization"))
|
|
compile(ideaSdkCoreDeps(*(rootProject.extra["ideaCoreSdkJars"] as Array<String>)))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
resources.srcDir(File(rootDir, "resources")).apply { include("**") }
|
|
}
|
|
"test" {}
|
|
}
|
|
|