From 8cf5532d3c4580747fbe857b15d5c9bd6d9b46d1 Mon Sep 17 00:00:00 2001 From: Kim-Dong-Jun99 Date: Tue, 16 Jan 2024 12:37:42 +0900 Subject: [PATCH] =?UTF-8?q?Refactor=20:=20JWT=20=EC=9D=98=EC=A1=B4?= =?UTF-8?q?=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 08c82b5..eeedd32 100644 --- a/build.gradle +++ b/build.gradle @@ -32,6 +32,9 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' // redis implementation 'org.springframework.boot:spring-boot-starter-data-redis' + // jwt + implementation 'io.jsonwebtoken:jjwt-api:0.11.2' + runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2', 'io.jsonwebtoken:jjwt-jackson:0.11.2' // kafka implementation 'org.springframework.kafka:spring-kafka' compileOnly 'org.projectlombok:lombok'