From a8589bf0359850214400904f6254972f64a8f717 Mon Sep 17 00:00:00 2001 From: Fredrik Sundberg Date: Tue, 4 Dec 2012 21:01:35 +0100 Subject: [PATCH] Replace dependency to aspectjrt with aspectjweaver Replace the gradle dependency on aspectjrt with aspectjweaver since aspectjrt is a subset of aspectjweaver and the full jar is required by Spring. SPR-8896 fixed the original code issue, this change just relates to the generated maven pom. Issue: SPR-10072 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 5a23abc93fe..13feca1042e 100644 --- a/build.gradle +++ b/build.gradle @@ -645,7 +645,7 @@ project('spring-aspects') { compile(project(":spring-orm"), optional) // for JPA exception translation support aspects project(":spring-orm") ajc "org.aspectj:aspectjtools:${aspectjVersion}" - compile "org.aspectj:aspectjrt:${aspectjVersion}" + compile "org.aspectj:aspectjweaver:${aspectjVersion}" testCompile project(":spring-core") // for CodeStyleAspect compile project(":spring-beans") // for 'p' namespace visibility testCompile project(":spring-test")