11 lines
475 B
Groovy
11 lines
475 B
Groovy
dependencies {
|
|||
|
|
api project(':platform:platform-web')
|
||
|
|
|
||
|
|
api 'org.springframework.boot:spring-boot-starter-web'
|
||
|
|
api 'org.apache.httpcomponents.client5:httpclient5'
|
||
|
|
// Boot 4 / Spring Framework 7 对应的 Resilience4j starter 是 -spring-boot4
|
||
|
|
api 'io.github.resilience4j:resilience4j-spring-boot4:2.4.0'
|
||
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||
|
|
implementation 'org.springframework.boot:spring-boot-starter-aspectj'
|
||
|
|
}
|