Remove spring-boot-starter-aop dependencies

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
This commit is contained in:
Phillip Webb
2024-10-30 16:57:20 -07:00
parent 9890872a9a
commit 23fe3977d2
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ plugins {
description = "Starter for using Spring Data JPA with Hibernate"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc"))
api("org.hibernate.orm:hibernate-core")
api("org.springframework.data:spring-data-jpa")

View File

@@ -5,6 +5,6 @@ plugins {
description = "Starter for using Spring Integration"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api("org.springframework.integration:spring-integration-core")
}