fixing Tracer-Bullet_Backend-Infrastruktur

This commit is contained in:
stefan
2025-08-06 17:46:26 +02:00
parent 1db41a5c62
commit 4f67379b42
5 changed files with 72 additions and 140 deletions
@@ -1,44 +1,3 @@
/*
plugins {
alias(libs.plugins.kotlin.multiplatform)
}
kotlin {
jvm()
js(IR) {
browser()
}
sourceSets {
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
api(libs.kotlinx.coroutines.test)
}
}
val jvmTest by getting {
dependencies {
api(libs.junit.jupiter.api)
api(libs.junit.jupiter.engine)
api(libs.junit.jupiter.params)
api(libs.junit.platform.launcher)
api(libs.mockk)
api(libs.assertj.core)
api(libs.spring.boot.starter.test)
api(libs.h2.driver)
api(libs.testcontainers.core)
api(libs.testcontainers.junit.jupiter)
api(libs.testcontainers.postgresql)
}
}
}
}
*/
// Dieses Modul bündelt alle für JVM-Tests notwendigen Abhängigkeiten.
// Jedes Modul, das Tests enthält, sollte dieses Modul mit `testImplementation` einbinden.
plugins {