Skip to content

Commit

Permalink
Merge pull request #43 from DSM-Repo/application/structure
Browse files Browse the repository at this point in the history
add :: aws 관련 dependency 추가
  • Loading branch information
ori0o0p authored Aug 5, 2024
2 parents e394dcd + 029902a commit ee43257
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'

// s3
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.281'
// AWS
final awsSdkVersion = "2.21.0"
implementation("software.amazon.awssdk:bom:$awsSdkVersion")
implementation("software.amazon.awssdk:s3-transfer-manager:$awsSdkVersion")
implementation("software.amazon.awssdk:s3:$awsSdkVersion")
implementation("software.amazon.awssdk.crt:aws-crt:0.27.3")

// OpenFeign
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.1.0'
Expand Down

0 comments on commit ee43257

Please sign in to comment.