123456789101112131415161718192021222324252627282930313233 |
- // Set properties before any plugins get loaded
- ext {
- minJavaVersionForTests = JavaVersion.VERSION_1_8
- }
- apply from: "${rootDir}/gradle/instrumentation.gradle"
- apply plugin: 'org.unbroken-dome.test-sets'
- muzzle {
- pass {
- group = "io.lettuce"
- module = "lettuce-core"
- versions = "[5.1.0.RELEASE,)"
- assertInverse = true
- }
- }
- testSets {
- latestDepTest {
- dirName = 'test'
- }
- }
- dependencies {
- compileOnly group: 'io.lettuce', name: 'lettuce-core', version: '5.1.0.RELEASE'
- testImplementation group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
- // Only 5.2+ will have command arguments in the db.statement tag.
- testImplementation group: 'io.lettuce', name: 'lettuce-core', version: '5.2.0.RELEASE'
- testImplementation project(':instrumentation:reactor-3.1')
- latestDepTestImplementation group: 'io.lettuce', name: 'lettuce-core', version: '5.+'
- }
|