18 lines
582 B
Groovy
18 lines
582 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'org.springframework'
|
|
module = 'spring-context'
|
|
versions = "[3.1.0.RELEASE,]"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// 3.2.3 is the first version with which the tests will run. Lower versions require other
|
|
// classes and packages to be imported. Versions 3.1.0+ work with the instrumentation.
|
|
library group: 'org.springframework', name: 'spring-context', version: '3.1.0.RELEASE'
|
|
testLibrary group: 'org.springframework', name: 'spring-context', version: '3.2.3.RELEASE'
|
|
}
|