From b0b6b7459a6f951ef4e8cc3da18ac2e895d0eb7e Mon Sep 17 00:00:00 2001 From: dong2ast Date: Tue, 24 Oct 2023 20:32:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20build.gradle=20=EB=B3=80=EA=B2=BD=20(jwt?= =?UTF-8?q?=20auth=20=EC=97=90=EB=9F=AC=20=ED=95=B4=EA=B2=B0=EC=9A=A9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index fb87a3c..6bd19be 100644 --- a/build.gradle +++ b/build.gradle @@ -40,8 +40,8 @@ dependencies { //JWT implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5' - implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5' - implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5' + runtimeOnly(group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5') + runtimeOnly(group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5') //OAuth 2.0 implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'