From 0c6ec60c95c81a44b96b27f1ae7b85dd8fc0f3f0 Mon Sep 17 00:00:00 2001 From: byeori Date: Thu, 10 Jul 2025 23:52:21 +0900 Subject: [PATCH] add dependencies --- prd/build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/prd/build.gradle b/prd/build.gradle index e2c11dc..4024635 100644 --- a/prd/build.gradle +++ b/prd/build.gradle @@ -24,11 +24,21 @@ repositories { } dependencies { + implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' + + //oauth + implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' + implementation 'org.springframework.boot:spring-boot-starter-security' + + // 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' } tasks.named('test') {