Skip to content

Commit 23fe397

Browse files
committed
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
1 parent 9890872 commit 23fe397

File tree

2 files changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-starters

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
description = "Starter for using Spring Data JPA with Hibernate"
66

77
dependencies {
8-
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
8+
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
99
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc"))
1010
api("org.hibernate.orm:hibernate-core")
1111
api("org.springframework.data:spring-data-jpa")

spring-boot-project/spring-boot-starters/spring-boot-starter-integration/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ plugins {
55
description = "Starter for using Spring Integration"
66

77
dependencies {
8-
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
8+
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
99
api("org.springframework.integration:spring-integration-core")
1010
}

0 commit comments

Comments
 (0)