From 2955e703a402ff870c6f821539f9bd013cfe5f23 Mon Sep 17 00:00:00 2001 From: SH4316 Date: Thu, 5 Dec 2024 14:05:33 +0900 Subject: [PATCH] Feat-backend: update build.gradle --- backend/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/build.gradle b/backend/build.gradle index 3308f94..c7d78ff 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -27,6 +27,12 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' + implementation('io.jsonwebtoken:jjwt-api:0.12.6') + runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.6') + runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.6') { + exclude(group: 'org.json', module: 'json') //provided by Android natively + } + implementation 'org.json:json:20240303' implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools'