From 3fd21ecdd341db84060805363a7edec894d84852 Mon Sep 17 00:00:00 2001 From: thedevluffy Date: Mon, 8 Jun 2020 23:06:26 +0900 Subject: [PATCH] =?UTF-8?q?[#171]=20chore=20-=20=EC=9D=98=EC=A1=B4?= =?UTF-8?q?=EC=84=B1=EC=9D=84=20=EC=B6=94=EA=B0=80=ED=95=9C=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 1 + tecobrary-core-api/build.gradle | 2 ++ 2 files changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 7707367..ee85105 100644 --- a/build.gradle +++ b/build.gradle @@ -76,5 +76,6 @@ subprojects { compileOnly 'org.projectlombok:lombok:1.18.8' annotationProcessor 'org.projectlombok:lombok:1.18.8' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' } } \ No newline at end of file diff --git a/tecobrary-core-api/build.gradle b/tecobrary-core-api/build.gradle index 067d220..76bc5f2 100644 --- a/tecobrary-core-api/build.gradle +++ b/tecobrary-core-api/build.gradle @@ -25,6 +25,8 @@ bootJar { } dependencies { + implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' + implementation project(':tecobrary-domain') implementation project(':tecobrary-external-service') }