mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 15:16:23 +00:00
17 lines
405 B
Groovy
17 lines
405 B
Groovy
dependencies {
|
|
implementation project(':common')
|
|
implementation 'com.mysql:mysql-connector-j'
|
|
|
|
// HTTP Client for external API
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
}
|
|
|
|
//external:
|
|
// ai:
|
|
// api-url: ${EXTERNAL_AI_URL:https://api.openai.com/v1}
|
|
// api-key: ${EXTERNAL_AI_KEY:your-api-key}
|
|
|
|
bootJar {
|
|
archiveFileName = "ai-recommend-service.jar"
|
|
}
|