a6cdf27204
Conflicting PRs https://jetbrains.team/p/kt/reviews/14253 and https://jetbrains.team/p/kt/reviews/14384/files were merged too close to each other for Safe-Merge to catch the problem and therefore resulted in compilation error.
27 lines
610 B
Kotlin
27 lines
610 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":kotlin-metadata"))
|
|
compileOnly(project(":kotlinx-metadata-klib"))
|
|
|
|
api(project(":tools:kotlinp"))
|
|
|
|
testApi(intellijCore())
|
|
|
|
testCompileOnly(project(":kotlin-metadata"))
|
|
testCompileOnly(project(":kotlinx-metadata-klib"))
|
|
|
|
testImplementation(libs.junit4)
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(projectTests(":generators:test-generator"))
|
|
|
|
testRuntimeOnly(project(":kotlinx-metadata-klib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|