Limit Jedis latest dep tests to 2+ versions of Jedis

Jedis 3 seems to have incompatible API changes
This commit is contained in:
Nikolay Martynov 2018-11-21 11:43:13 -05:00
parent f4225ca2b4
commit 590ed30f56
1 changed files with 2 additions and 1 deletions

View File

@ -31,5 +31,6 @@ dependencies {
testCompile group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6' testCompile group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
testCompile group: 'redis.clients', name: 'jedis', version: '1.4.0' testCompile group: 'redis.clients', name: 'jedis', version: '1.4.0'
latestDepTestCompile group: 'redis.clients', name: 'jedis', version: '+' // Jedis 3.0 has API changes that prevent instrumentation from applying
latestDepTestCompile group: 'redis.clients', name: 'jedis', version: '2.+'
} }