Browse Source

Merge pull request #196 from KingBuzzer/spring-aspects-dependencies

* spring-aspects-dependencies:
  Replace dependency to aspectjrt with aspectjweaver
pull/196/merge
Phillip Webb 13 years ago
parent
commit
d12fbcc7ce
  1. 2
      build.gradle

2
build.gradle

@ -645,7 +645,7 @@ project('spring-aspects') { @@ -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")

Loading…
Cancel
Save