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
This commit is contained in:
Fredrik Sundberg
2012-12-04 21:01:35 +01:00
committed by Phillip Webb
parent 1352222ea6
commit a8589bf035
+1 -1
View File
@@ -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")