diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index b9537ac49..023c23179 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -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}" diff --git a/buildSrc/src/main/kotlin/DependencyVersions.kt b/buildSrc/src/main/kotlin/DependencyVersions.kt index 350906584..39e660b2a 100644 --- a/buildSrc/src/main/kotlin/DependencyVersions.kt +++ b/buildSrc/src/main/kotlin/DependencyVersions.kt @@ -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" diff --git a/dms-infrastructure/build.gradle.kts b/dms-infrastructure/build.gradle.kts index b49b646f3..74601e61a 100644 --- a/dms-infrastructure/build.gradle.kts +++ b/dms-infrastructure/build.gradle.kts @@ -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)