mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 09:26:24 +00:00
26 lines
1.0 KiB
Groovy
26 lines
1.0 KiB
Groovy
dependencies {
|
|
// Kafka Consumer
|
|
implementation 'org.springframework.kafka:spring-kafka'
|
|
|
|
// Redis for result caching (already in root build.gradle)
|
|
// implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
// OpenFeign for Claude/GPT API
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
|
|
|
|
// Resilience4j for Circuit Breaker
|
|
implementation "io.github.resilience4j:resilience4j-spring-boot3:${resilience4jVersion}"
|
|
implementation "io.github.resilience4j:resilience4j-circuitbreaker:${resilience4jVersion}"
|
|
|
|
// Jackson for JSON
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
// JWT (for security)
|
|
implementation "io.jsonwebtoken:jjwt-api:${jjwtVersion}"
|
|
runtimeOnly "io.jsonwebtoken:jjwt-impl:${jjwtVersion}"
|
|
runtimeOnly "io.jsonwebtoken:jjwt-jackson:${jjwtVersion}"
|
|
|
|
// Note: PostgreSQL dependency is in root build.gradle but AI Service doesn't use DB
|
|
// We still include it for consistency, but no JPA entities will be created
|
|
}
|