1fbece9e7d
should prevent problems that may appear if JPS will try to load gradle scripting subplugin (cherrypicked with update from 1.2.50)
25 lines
383 B
Kotlin
25 lines
383 B
Kotlin
|
|
description = "Kotlin Scripting IDEA Plugin"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-scripting-compiler"))
|
|
compileOnly(project(":idea:idea-gradle"))
|
|
compileOnly(project(":idea:idea-core"))
|
|
compileOnly(intellijDep())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar()
|
|
|
|
ideaPlugin()
|
|
|