Updating muzzle spec

Switching muzzle to target spring-tx rather than spring-data (which is logical given the instrumentation point)

Also added extraDependency on aopalliance
This restricts the support the Spring 2.5 when spring-tx & spring-aop using aopalliance were introduced.
This commit is contained in:
dougqh 2019-09-17 10:06:43 -04:00
parent e43baf82be
commit 172ff747cb
1 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,9 @@
muzzle { muzzle {
pass { pass {
group = 'org.springframework.data' group = 'org.springframework'
module = 'spring-data-commons' module = 'spring-tx'
versions = "[1.5.0.RELEASE,)" versions = "[2.5.0.RELEASE,)"
extraDependency "aopalliance:aopalliance:1.0"
} }
} }
@ -34,5 +35,6 @@ dependencies {
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-commons', version: '+' latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-commons', version: '+'
latestDepTestCompile group: 'org.springframework', name: 'spring-aop', version: '+' latestDepTestCompile group: 'org.springframework', name: 'spring-aop', version: '+'
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-jpa', version: '+' latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-jpa', version: '+'
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-jdbc', version: '+'
} }