Skip to content

Commit

Permalink
feat : add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wwan13 committed May 9, 2024
1 parent 5974d4b commit e26d6e9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,23 @@ repositories {
}

dependencies {
// spring
implementation 'org.springframework.boot:spring-boot-starter'

// web
implementation 'org.springframework.boot:spring-boot-starter-web'

// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'

// password encoder
implementation 'org.springframework.security:spring-security-crypto:6.1.0'

// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter'
}

tasks.named('test') {
Expand Down

0 comments on commit e26d6e9

Please sign in to comment.