blob: 7fcff5a74511137a4014b534af5324d5ef8afb4f [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":idea"))
compile(project(":idea:idea-core"))
compile(project(":idea:idea-jvm"))
compile(project(":compiler:frontend"))
compile(project(":native:frontend.native"))
compile(project(":native:kotlin-native-utils"))
compileOnly(intellijDep())
Platform[192].orHigher {
compileOnly(intellijPluginDep("java"))
}
testCompileOnly(intellijDep())
testRuntimeOnly(intellijDep())
}
sourceSets {
"main" {
projectDefault()
java.srcDir("gen")
}
"test" { projectDefault() }
}
configureFormInstrumentation()
runtimeJar {
archiveName = "native-ide.jar"
}