Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions cloud-services/msa-point-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '4.0.2'
// Spring Boot 3.5.10
id 'org.springframework.boot' version '3.5.10'
id 'io.spring.dependency-management' version '1.1.7'
}

Expand Down Expand Up @@ -30,16 +31,27 @@ repositories {
}

ext {
set('springCloudVersion', "2025.1.0")
// Spring Cloud 2025.1.0 -> 2025.0.0
set('springCloudVersion', "2025.0.0")
}

dependencies {
// 1. 'webmvc'가 아니라 'web'이어야 Jackson 등 필수 라이브러리가 다 들어옴
implementation 'org.springframework.boot:spring-boot-starter-web'

// 2. 버전 꼬임 방지를 위해 Jackson 명시
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'

// 3. 나머지 의존성
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

// 테스트 관련
testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
testImplementation 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-h2console'
Expand Down