fc8be48fa8
Up-to-date check is very heavy for intellij repo due to artifact size. If module directory in repo is written only by one task we can assume that task if up-to-date if target directory exists.
28 lines
613 B
Kotlin
28 lines
613 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(kotlinStdlib())
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:cli-common"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":js:js.frontend"))
|
|
compile(project(":kotlin-native:kotlin-native-library-reader"))
|
|
compileOnly(intellijDep())
|
|
compileOnly(jpsStandalone()) { includeJars("jps-model") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar {
|
|
archiveName = "jps-common-ide.jar"
|
|
}
|
|
|
|
ideaPlugin() |