mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 09:26:24 +00:00
- Analytics 서비스 구현 추가 (API, 소스 코드) - Event 서비스 소스 코드 추가 - 보안 관련 공통 컴포넌트 업데이트 (JWT, UserPrincipal, ErrorCode) - API 컨벤션 및 명세서 업데이트 - 데이터베이스 SQL 스크립트 추가 - 백엔드 개발 문서 및 테스트 가이드 추가 - Kafka 메시지 체크 도구 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
608 B
Groovy
17 lines
608 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 6 네이티브로 배열 타입 지원하므로 별도 라이브러리 불필요
|
|
// implementation 'com.vladmihalcea:hibernate-types-60:2.21.1'
|
|
}
|