aa5a5c954f
It wasn't obvious how to use this comment properly. Now it should be clear
27 lines
481 B
Kotlin
27 lines
481 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
jvmTarget = "1.6"
|
|
|
|
// FIX ME WHEN BUNCH 193 REMOVED: 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")
|
|
}
|
|
|