add common module

This commit is contained in:
cherry2250
2025-10-23 17:54:28 +09:00
parent 8029d8f9ce
commit ea82ff4748
57 changed files with 4706 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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'
}