From 81f6a77d15568714574cb64ec018e813f676b43b Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 5 Oct 2015 12:41:17 +0100 Subject: [PATCH] Update starters to only depend on AspectJ Weaver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AspectJ’s weaver module contains a superset of the classes found in AspectJ’s RT module. This commit updates the starters to exclude aspectjrt so that only aspectjweaver is on the classpath. Closes gh-3975 --- spring-boot-starters/spring-boot-starter-aop/pom.xml | 4 ---- spring-boot-starters/spring-boot-starter-data-jpa/pom.xml | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/spring-boot-starters/spring-boot-starter-aop/pom.xml b/spring-boot-starters/spring-boot-starter-aop/pom.xml index a3b35ce10ac..6fee092d717 100644 --- a/spring-boot-starters/spring-boot-starter-aop/pom.xml +++ b/spring-boot-starters/spring-boot-starter-aop/pom.xml @@ -26,10 +26,6 @@ org.springframework spring-aop - - org.aspectj - aspectjrt - org.aspectj aspectjweaver diff --git a/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml b/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml index 933048d8a9a..7de8ab777a9 100644 --- a/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml +++ b/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml @@ -47,6 +47,12 @@ org.springframework.data spring-data-jpa + + + org.aspectj + aspectjrt + + org.springframework