mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 12:46:23 +00:00
- CORS 설정에 https 프로토콜 지원 추가 - User-Service CORS를 모든 Origin 허용으로 변경 - ConfigMap CORS_ALLOWED_ORIGINS 확장 - User-Service DB migration 스크립트 추가 - Application 설정 파일 업데이트 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
741 B
Groovy
25 lines
741 B
Groovy
bootJar {
|
|
archiveFileName = 'user-service.jar'
|
|
}
|
|
|
|
dependencies {
|
|
// BCrypt for password hashing
|
|
implementation 'org.springframework.security:spring-security-crypto'
|
|
|
|
// Redis for session management
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
// OpenFeign for external API calls (사업자번호 검증)
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
|
|
|
|
// Flyway for database migration
|
|
implementation 'org.flywaydb:flyway-core'
|
|
implementation 'org.flywaydb:flyway-database-postgresql'
|
|
|
|
// H2 Database for development
|
|
runtimeOnly 'com.h2database:h2'
|
|
|
|
// PostgreSQL Database for production
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
}
|