Skip to content

Commit

Permalink
refactor: FCM 모듈에서 SQS 모듈을 사용하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
GiJungPark committed Nov 10, 2024
1 parent a9866ea commit 9b7bc5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dmforu-admin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {

implementation("org.springframework.boot:spring-boot-starter-web")

runtimeOnly(project(":dmforu-infrastructure:fcm"))
runtimeOnly(project(":dmforu-infrastructure:sqs"))
runtimeOnly(project(":dmforu-infrastructure:storage:mysql"))
runtimeOnly(project(":dmforu-infrastructure:storage:mongo"))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util.*
@SpringBootApplication(
scanBasePackages = [
"com.dmforu.admin",
"com.dmforu.fcm",
"com.dmforu.sqs",
"com.dmforu.storage.db.mongo",
"com.dmforu.storage.db.mysql"
]
Expand Down
1 change: 1 addition & 0 deletions dmforu-admin/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ spring:
- mysql.yml
- mongo.yml
- monitoring.yml
- sqs.yml
web.resources.add-mappings: false

spring.lifecycle.timeout-per-shutdown-phase: 30s
Expand Down

0 comments on commit 9b7bc5c

Please sign in to comment.