lettuce-5.1.gradle 897 B

123456789101112131415161718192021222324252627282930313233
  1. // Set properties before any plugins get loaded
  2. ext {
  3. minJavaVersionForTests = JavaVersion.VERSION_1_8
  4. }
  5. apply from: "${rootDir}/gradle/instrumentation.gradle"
  6. apply plugin: 'org.unbroken-dome.test-sets'
  7. muzzle {
  8. pass {
  9. group = "io.lettuce"
  10. module = "lettuce-core"
  11. versions = "[5.1.0.RELEASE,)"
  12. assertInverse = true
  13. }
  14. }
  15. testSets {
  16. latestDepTest {
  17. dirName = 'test'
  18. }
  19. }
  20. dependencies {
  21. compileOnly group: 'io.lettuce', name: 'lettuce-core', version: '5.1.0.RELEASE'
  22. testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
  23. // Only 5.2+ will have command arguments in the db.statement tag.
  24. testImplementation group: 'io.lettuce', name: 'lettuce-core', version: '5.2.0.RELEASE'
  25. testImplementation project(':instrumentation:reactor-3.1')
  26. latestDepTestImplementation group: 'io.lettuce', name: 'lettuce-core', version: '5.+'
  27. }