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:
parent
e43baf82be
commit
172ff747cb
|
@ -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: '+'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue