mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 14:06:23 +00:00
- application-dev.yml, application-local.yml 삭제 - 단일 application.yml로 통합 (user-service 형식 참고) - Azure Blob Storage connection string 기본값 추가 - Redis, Actuator, Logging 상세 설정 추가 - OpenAPI/Swagger 설정 추가 - CORS 설정 추가 - 모든 설정을 환경 변수로 관리 가능하도록 구성 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
1.1 KiB
Groovy
33 lines
1.1 KiB
Groovy
configurations {
|
|
// Exclude JPA and PostgreSQL from inherited dependencies (Phase 3: Redis migration)
|
|
implementation.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-data-jpa'
|
|
implementation.exclude group: 'org.postgresql', module: 'postgresql'
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
|
|
// Redis for AI data reading and image URL caching
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
// OpenFeign for Stable Diffusion/DALL-E API
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
|
|
|
|
// Azure Blob Storage for CDN
|
|
implementation "com.azure:azure-storage-blob:${azureStorageVersion}"
|
|
|
|
// 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'
|
|
}
|
|
|
|
// 실행 JAR 파일명 설정
|
|
bootJar {
|
|
archiveFileName = 'content-service.jar'
|
|
}
|