merrycoral 5476fe9388 event-service 초기 구현 및 JWT 토큰 매장 ID 추가
- 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>
2025-10-24 10:17:45 +09:00

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'
}