Skip to content

Commit

Permalink
feat: swagger, jwt 관련 dependency 추가 #20 #21
Browse files Browse the repository at this point in the history
  • Loading branch information
heokyeongju committed Nov 7, 2022
1 parent 8d60479 commit 6ac8eb1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 4Week_Mission/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins {
id 'java'
//querydsl 추가
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"

}

group = 'com.mutbook'
Expand Down Expand Up @@ -51,6 +52,14 @@ dependencies {
annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}"

testImplementation 'org.springframework.batch:spring-batch-test'
// 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'

// swagger
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'io.springfox:springfox-swagger-ui:3.0.0'
}

tasks.named('test') {
Expand Down

0 comments on commit 6ac8eb1

Please sign in to comment.