apache-httpasyncclient-4.gradle 720 B

12345678910111213141516171819202122232425262728293031
  1. ext {
  2. minJavaVersionForTests = JavaVersion.VERSION_1_8
  3. }
  4. muzzle {
  5. pass {
  6. group = "org.apache.httpcomponents"
  7. module = "httpasyncclient"
  8. versions = "[4.0,)"
  9. assertInverse = true
  10. }
  11. }
  12. apply from: "${rootDir}/gradle/java.gradle"
  13. apply plugin: 'org.unbroken-dome.test-sets'
  14. testSets {
  15. latestDepTest {
  16. dirName = 'test'
  17. }
  18. }
  19. dependencies {
  20. compileOnly group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0'
  21. testCompile project(':dd-java-agent:instrumentation:java-concurrent')
  22. testCompile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0'
  23. latestDepTestCompile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '+'
  24. }