mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 07:06:24 +00:00
32 lines
602 B
Groovy
32 lines
602 B
Groovy
jar {
|
|
enabled = true
|
|
archiveClassifier = ''
|
|
}
|
|
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
|
|
// member/build.gradle
|
|
dependencies {
|
|
implementation project(':common')
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
}
|
|
|
|
// store/build.gradle
|
|
dependencies {
|
|
implementation project(':common')
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
}
|
|
|
|
// marketing-content/build.gradle
|
|
dependencies {
|
|
implementation project(':common')
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
}
|
|
|
|
// ai-recommend/build.gradle
|
|
dependencies {
|
|
implementation project(':common')
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
} |