04fca2ac0d
Move Gradle part of plugin from 'idea-gradle/native' to 'idea-gradle-native' module
36 lines
883 B
Kotlin
36 lines
883 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":konan:konan-serializer"))
|
|
|
|
// compile("org.jetbrains.kotlin:kotlin-native-gradle-plugin")
|
|
|
|
compileOnly(project(":idea:idea-gradle"))
|
|
compileOnly(project(":idea:idea-native"))
|
|
|
|
compileOnly(project(":idea")) { isTransitive = false }
|
|
compileOnly(project(":idea:idea-jvm"))
|
|
compile(project(":idea:kotlin-gradle-tooling"))
|
|
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":compiler:frontend.script"))
|
|
|
|
compile(project(":js:js.frontend"))
|
|
|
|
compileOnly(intellijDep())
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
compileOnly(intellijPluginDep("Groovy"))
|
|
compileOnly(intellijPluginDep("junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
configureInstrumentation()
|