From 50ee2ac33e5c9b0dbd5e70f43f2bc12cc231e111 Mon Sep 17 00:00:00 2001 From: kimyubi Date: Wed, 6 Dec 2023 10:29:40 +0900 Subject: [PATCH] Chore : Spring Boot Version Up (3.1.6 -> 3.2.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Docker Desktop을 최신 버전으로 업데이트한 이후 다음과 같은 이슈가 발생하였고, 해당 이슈를 fixed한 버전으로 Spring Boot 버전 업그레이드함으로써 해결 - Issue : Docker Compose integration does not work with 2.23.0 due to 'Cannot invoke "org.springframework.boot.docker.compose.core.DockerCliInspectResponse.hostConfig()" because "inspectResponse" is nul - Referece Link : https://github.com/spring-projects/spring-boot/issues/37982 --- build.gradle | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 5cd9e49..1bbe0dc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.1.4' + id 'org.springframework.boot' version '3.2.0' id 'io.spring.dependency-management' version '1.1.3' id "com.epages.restdocs-api-spec" version '0.19.0' id 'org.hidetake.swagger.generator' version '2.19.2' @@ -82,9 +82,12 @@ dependencies { // Spring Security + JWT implementation 'org.springframework.boot:spring-boot-starter-security' - implementation group: 'io.jsonwebtoken', name: 'jjwt-api', 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' + implementation 'io.jsonwebtoken:jjwt-api:0.11.5' + runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' + runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' + + // Oauth2Client + implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' } openapi3 {