From 642428a42fc446fe26d3c13f830f99bc846b4ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=A0=95=ED=9B=84?= Date: Fri, 2 Aug 2024 23:56:16 +0900 Subject: [PATCH] chore: gitignore & gradle files --- .gitignore | 4 +++- api-module/build.gradle | 2 ++ common-module/build.gradle | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a54e8eb..e476037 100644 --- a/.gitignore +++ b/.gitignore @@ -36,4 +36,6 @@ out/ ### VS Code ### .vscode/ -common-module/src/main/resources/application-s3.yml \ No newline at end of file +api-module/src/main/resources/application-prod.yml +common-module/src/main/resources/application-s3.yml +api-module/src/main/resources/application-payment.yml \ No newline at end of file diff --git a/api-module/build.gradle b/api-module/build.gradle index 3ea96f7..11f94bb 100644 --- a/api-module/build.gradle +++ b/api-module/build.gradle @@ -9,6 +9,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + implementation 'org.springframework.boot:spring-boot-starter-webflux' + implementation 'org.springframework.retry:spring-retry' implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' // swagger diff --git a/common-module/build.gradle b/common-module/build.gradle index ba4f354..04360e6 100644 --- a/common-module/build.gradle +++ b/common-module/build.gradle @@ -7,6 +7,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-test' implementation 'org.springframework.boot:spring-boot-starter-security' + implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' // swagger }