14 lines
627 B
Groovy
14 lines
627 B
Groovy
dependencies {
|
||
// 只依赖 platform-web 里的 AuditContext(见根 README 的"对文档的偏离 #1")
|
||
api project(':platform:platform-web')
|
||
|
||
api 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||
api 'net.javacrumbs.shedlock:shedlock-spring:6.9.2'
|
||
implementation 'net.javacrumbs.shedlock:shedlock-provider-jdbc-template:6.9.2'
|
||
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
||
implementation 'com.github.ben-manes.caffeine:caffeine'
|
||
implementation 'org.flywaydb:flyway-core'
|
||
runtimeOnly 'org.flywaydb:flyway-mysql'
|
||
runtimeOnly 'com.mysql:mysql-connector-j'
|
||
}
|