mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 15:26:23 +00:00
- JWT 토큰에 매장 ID(storeId) 필드 추가 - event-service 구현 (이벤트 생성/조회 API) - hibernate-types 의존성 추가 (UUID 지원) - API 매핑 문서 추가 - IntelliJ 실행 프로파일 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
539 B
Groovy
17 lines
539 B
Groovy
dependencies {
|
|
// 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 UUID generator
|
|
implementation 'com.vladmihalcea:hibernate-types-60:2.21.1'
|
|
}
|