17 lines
375 B
Groovy
17 lines
375 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'org.springframework'
|
|
module = 'spring-core'
|
|
versions = "[2.0,]"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library "org.springframework:spring-core:2.0"
|
|
|
|
// 3.0 introduces submit() methods
|
|
// 4.0 introduces submitListenable() methods
|
|
testLibrary "org.springframework:spring-core:4.0.0.RELEASE"
|
|
} |