Skip to content

Commit

Permalink
setting: (#490) aws kms dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed May 9, 2023
1 parent daba4b5 commit 723fa5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ object Dependencies {
// aws
const val SPRING_AWS = "org.springframework.cloud:spring-cloud-starter-aws:${DependencyVersions.AWS_VERSION}"
const val AWS_SES = "com.amazonaws:aws-java-sdk-ses:${DependencyVersions.SES_VERSION}"
const val AWS_KMS = "com.amazonaws:aws-java-sdk-kms:${DependencyVersions.KMS_VERSION}"

// test
const val SPRING_TEST = "org.springframework.boot:spring-boot-starter-test:${PluginVersions.SPRING_BOOT_VERSION}"
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/DependencyVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ object DependencyVersions {
const val JWT_VERSION = "0.9.1"
const val AWS_VERSION = "2.2.6.RELEASE"
const val SES_VERSION = "1.11.852"
const val KMS_VERSION ="1.12.464"
const val REDIS_VERSION = "2.7.2"
const val SERVLET_VERSION = "4.0.1"
const val UUID_TIME_VERSION = "3.1.4"
Expand Down
3 changes: 2 additions & 1 deletion dms-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ dependencies {
implementation(Dependencies.JWT)

// aws
implementation(Dependencies.AWS_SES)
implementation(Dependencies.SPRING_AWS)
implementation(Dependencies.AWS_SES)
implementation(Dependencies.AWS_KMS)

// configuration
kapt(Dependencies.CONFIGURATION_PROCESSOR)
Expand Down

0 comments on commit 723fa5d

Please sign in to comment.