0b8c497d2e
Fixed KT-35921 Fixed KT-36673
27 lines
461 B
Kotlin
27 lines
461 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
jvmTarget = "1.6"
|
|
|
|
// BUNCH 193: this module is no longer needed since IDEA 2020.1
|
|
Platform[193].orLower {
|
|
dependencies {
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
runtimeJar()
|
|
|
|
sourcesJar()
|
|
|
|
javadocJar()
|
|
|
|
apply(from = "$rootDir/gradle/kotlinPluginPublication.gradle.kts")
|
|
}
|
|
|