Skip to content

Commit

Permalink
[CHORE] #11 add redis dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nykoh2001 committed May 31, 2024
1 parent 5315238 commit 53443ea
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions seminar/week3/practice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,21 @@ dependencies {
// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'

//JWT
// JWT
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'


//Security
// Security
implementation 'org.springframework.boot:spring-boot-starter-security'

//Multipart file
// Multipart file
implementation("software.amazon.awssdk:bom:2.21.0")
implementation("software.amazon.awssdk:s3:2.21.0")

// Redis
implementation("org.springframework.boot:spring-boot-starter-data-redis:2.3.1.RELEASE")
}

tasks.named('test') {
Expand Down

0 comments on commit 53443ea

Please sign in to comment.