spring-scheduling-3.1.gradle 835 B

123456789101112131415161718192021222324252627
  1. apply from: "${rootDir}/gradle/instrumentation.gradle"
  2. apply plugin: 'org.unbroken-dome.test-sets'
  3. muzzle {
  4. pass {
  5. group = 'org.springframework'
  6. module = 'spring-context'
  7. versions = "[3.1.0.RELEASE,]"
  8. assertInverse = true
  9. }
  10. }
  11. testSets {
  12. latestDepTest {
  13. dirName = 'test'
  14. }
  15. }
  16. dependencies {
  17. // 3.2.3 is the first version with which the tests will run. Lower versions require other
  18. // classes and packages to be imported. Versions 3.1.0+ work with the instrumentation.
  19. compileOnly group: 'org.springframework', name: 'spring-context', version: '3.1.0.RELEASE'
  20. testCompile group: 'org.springframework', name: 'spring-context', version: '3.2.3.RELEASE'
  21. // this is the latest version that supports Java 7
  22. latestDepTestCompile group: 'org.springframework', name: 'spring-context', version: '4.+'
  23. }