29787218e1
Fixes tests in kt-212-master branch of kotlin plugin in intellij-community repository
24 lines
527 B
Kotlin
24 lines
527 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
val commonCompilerModules: Array<String> by rootProject.extra
|
|
|
|
val excludedCompilerModules = listOf(
|
|
":compiler:cli",
|
|
":compiler:javac-wrapper",
|
|
":compiler:incremental-compilation-impl"
|
|
)
|
|
|
|
val projects = commonCompilerModules.asList() - excludedCompilerModules + listOf(
|
|
":kotlin-compiler-runner-unshaded",
|
|
":kotlin-preloader",
|
|
":daemon-common",
|
|
":kotlin-daemon-client"
|
|
)
|
|
|
|
publishJarsForIde(
|
|
projects = projects,
|
|
libraryDependencies = listOf(protobufFull())
|
|
)
|