
Update `spring-boot-starter-data` and `spring-boot-starter-integration` so that they no longer depend on `spring-boot-starter-aop`. The removes the dependency on AspectJ which should help improve startup time. Closes gh-42934
11 lines
266 B
Groovy
11 lines
266 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Spring Integration"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api("org.springframework.integration:spring-integration-core")
|
|
}
|