spring-core-2.0-javaagent.gradle 375 B

1234567891011121314151617
  1. apply from: "$rootDir/gradle/instrumentation.gradle"
  2. muzzle {
  3. pass {
  4. group = 'org.springframework'
  5. module = 'spring-core'
  6. versions = "[2.0,]"
  7. }
  8. }
  9. dependencies {
  10. library "org.springframework:spring-core:2.0"
  11. // 3.0 introduces submit() methods
  12. // 4.0 introduces submitListenable() methods
  13. testLibrary "org.springframework:spring-core:4.0.0.RELEASE"
  14. }