blob: 5be9ff03cf5cd4548b57537a2e06c501088faee3 [file] [log] [blame] [edit]
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")
}