From fb860db57719af7208cd9a96d60d3256b79ede82 Mon Sep 17 00:00:00 2001 From: jimin3263 Date: Sun, 11 Aug 2024 01:26:09 +0900 Subject: [PATCH] chore: test --- entry/batch/build.gradle.kts | 1 - entry/batch/src/main/kotlin/com/pokit/batch/BatchApplication.kt | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/entry/batch/build.gradle.kts b/entry/batch/build.gradle.kts index 044f3995..e4a56f3c 100644 --- a/entry/batch/build.gradle.kts +++ b/entry/batch/build.gradle.kts @@ -9,7 +9,6 @@ plugins { dependencies { // 모듈 implementation(project(":adapters:in-batch")) - implementation(project(":adapters:out-persistence")) implementation(project(":adapters:out-web")) implementation(project(":domain")) diff --git a/entry/batch/src/main/kotlin/com/pokit/batch/BatchApplication.kt b/entry/batch/src/main/kotlin/com/pokit/batch/BatchApplication.kt index 20a3372a..6fe54b25 100644 --- a/entry/batch/src/main/kotlin/com/pokit/batch/BatchApplication.kt +++ b/entry/batch/src/main/kotlin/com/pokit/batch/BatchApplication.kt @@ -9,6 +9,6 @@ import org.springframework.boot.runApplication class BatchApplication fun main(args: Array) { - System.setProperty("spring.config.name", "application-out-web, application-core, application-out-persistence") + System.setProperty("spring.config.name", "application-out-web, application-core") runApplication(*args) }