mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 23:26:25 +00:00
- UserPrincipal userId/storeId 타입을 Long에서 UUID로 변경 - JwtTokenProvider UUID 파싱 로직 수정 - event-service build.gradle에 bootJar 설정 추가 - Docker 이미지 빌드 성공 (event-service:latest, 1.08GB) - 컨테이너 이미지 빌드 가이드 문서 작성 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
788 B
Groovy
24 lines
788 B
Groovy
bootJar {
|
|
archiveFileName = 'event-service.jar'
|
|
}
|
|
|
|
dependencies {
|
|
// Actuator for health checks and monitoring
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
|
|
// Kafka for job publishing
|
|
implementation 'org.springframework.kafka:spring-kafka'
|
|
|
|
// Redis for AI/Image data caching
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
// OpenFeign for Distribution Service call
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
|
|
|
|
// Jackson for JSON
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
// Hibernate 6 네이티브로 배열 타입 지원하므로 별도 라이브러리 불필요
|
|
// implementation 'com.vladmihalcea:hibernate-types-60:2.21.1'
|
|
}
|