Fix JPS import after bed16f92 (KT-58358)

Some native test dependencies were excluded from JPS import of `:kotlin-atomicfu-compiler-pligin`


Merge-request: KT-MR-11477
Merged-by: Aleksei Cherepanov <aleksei.cherepanov@jetbrains.com>
This commit is contained in:
Aleksei.Cherepanov
2023-08-07 15:06:01 +00:00
committed by Space Team
parent 1b82477ffa
commit 7a97a43036
@@ -59,7 +59,9 @@ repositories {
} }
dependencies { dependencies {
testImplementation(project(mapOf("path" to ":native:native.tests"))) if (!kotlinBuildProperties.isInIdeaSync) {
testImplementation(project(mapOf("path" to ":native:native.tests")))
}
compileOnly(intellijCore()) compileOnly(intellijCore())
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all")) compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
@@ -90,7 +92,9 @@ dependencies {
testApi(project(":kotlin-test:kotlin-test-jvm")) testApi(project(":kotlin-test:kotlin-test-jvm"))
// Dependencies for Kotlin/Native test infra: // Dependencies for Kotlin/Native test infra:
testImplementation(projectTests(":native:native.tests")) if (!kotlinBuildProperties.isInIdeaSync) {
testImplementation(projectTests(":native:native.tests"))
}
testImplementation(project(":native:kotlin-native-utils")) testImplementation(project(":native:kotlin-native-utils"))
testImplementation(commonDependency("org.jetbrains.teamcity:serviceMessages")) testImplementation(commonDependency("org.jetbrains.teamcity:serviceMessages"))