14 lines
273 B
Kotlin
14 lines
273 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
publishTestJarsForIde(
|
|
listOf(
|
|
":compiler:test-infrastructure",
|
|
":compiler:tests-common-new",
|
|
":compiler:test-infrastructure-utils",
|
|
":compiler:tests-compiler-utils",
|
|
":compiler:tests-spec"
|
|
)
|
|
)
|