Skip to content
Snippets Groups Projects
Commit 4301b8a9 authored by Gwan Ju's avatar Gwan Ju
Browse files

chore: add JWT dependencies to build.gradle

parent 1e2ef739
No related branches found
No related tags found
1 merge request!1게시글 작성, 댓글 작성, 유저 관리 기능 추가
...@@ -24,8 +24,10 @@ repositories { ...@@ -24,8 +24,10 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-web'
//H2 DB 추가 //H2 DB 추가
runtimeOnly 'com.h2database:h2' runtimeOnly 'com.h2database:h2'
compileOnly 'org.projectlombok:lombok' compileOnly 'org.projectlombok:lombok'
...@@ -33,6 +35,13 @@ dependencies { ...@@ -33,6 +35,13 @@ dependencies {
runtimeOnly 'com.mysql:mysql-connector-j' runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
} }
tasks.named('test') { tasks.named('test') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment