Skip to content

Commit

Permalink
Chore : Spring Boot Version Up (3.1.6 -> 3.2.0)
Browse files Browse the repository at this point in the history
- 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 : spring-projects/spring-boot#37982
  • Loading branch information
kimyubi committed Dec 6, 2023
1 parent 2ca2fd6 commit 50ee2ac
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 50ee2ac

Please sign in to comment.