Files
Leonid Startsev a6cdf27204 Fix compilation of :tools:kotlinp-klib and related projects
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.
2024-02-15 17:15:58 +00:00

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() }
}