opentelemetry-java-instrume.../instrumentation/spring/spring-scheduling-3.1/spring-scheduling-3.1.gradle

25 lines
788 B
Groovy

ext {
minJavaVersionForTests = JavaVersion.VERSION_1_8
}
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'
// this is the latest version that supports Java 7
latestDepTestLibrary group: 'org.springframework', name: 'spring-context', version: '4.+'
}