refactor: kotest 의존성은 공통 모듈 설정으로 이동

This commit is contained in:
이상진 2025-09-27 20:18:17 +09:00
parent 89eeefbf0c
commit 5b31672ebb
2 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@ subprojects {
dependencies { dependencies {
add("implementation", "io.github.oshai:kotlin-logging-jvm:7.0.3") add("implementation", "io.github.oshai:kotlin-logging-jvm:7.0.3")
add("implementation", "io.kotest:kotest-runner-junit5:5.9.1")
} }
tasks.withType<Test> { tasks.withType<Test> {

View File

@ -43,7 +43,6 @@ dependencies {
testImplementation("com.ninja-squad:springmockk:4.0.2") testImplementation("com.ninja-squad:springmockk:4.0.2")
// Kotest // Kotest
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0") testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
// RestAssured // RestAssured
@ -55,6 +54,7 @@ dependencies {
// submodules // submodules
implementation(project(":common:config")) implementation(project(":common:config"))
implementation(project(":common:persistence"))
} }
tasks.jar { tasks.jar {