mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 11:26:26 +00:00
17 lines
542 B
Groovy
17 lines
542 B
Groovy
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'
|
|
|
|
// H2 Database for development
|
|
runtimeOnly 'com.h2database:h2'
|
|
|
|
// PostgreSQL Database for production
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
}
|