Fix muzzle build (#53)
* Adjust version compatibility to only 2.x They recently released 3.0.0 which is not compatible with our instrumentation. * Also update latestDepTest ranges. Co-authored-by: Tyler Benson <tylerbenson@gmail.com>
This commit is contained in:
parent
64fd99862a
commit
de0f3fc3c1
|
@ -29,7 +29,7 @@ muzzle {
|
||||||
pass {
|
pass {
|
||||||
group = 'com.couchbase.client'
|
group = 'com.couchbase.client'
|
||||||
module = 'java-client'
|
module = 'java-client'
|
||||||
versions = "[2.7.9,)"
|
versions = "[2.7.9,3.0.0)"
|
||||||
}
|
}
|
||||||
fail {
|
fail {
|
||||||
group = 'com.couchbase.client'
|
group = 'com.couchbase.client'
|
||||||
|
@ -59,6 +59,6 @@ dependencies {
|
||||||
testCompile group: 'com.couchbase.client', name: 'java-client', version: '2.5.0'
|
testCompile group: 'com.couchbase.client', name: 'java-client', version: '2.5.0'
|
||||||
|
|
||||||
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-couchbase', version: '3.+'
|
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-couchbase', version: '3.+'
|
||||||
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.6+'
|
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.+'
|
||||||
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '+'
|
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '+'
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ muzzle {
|
||||||
pass {
|
pass {
|
||||||
group = 'com.couchbase.client'
|
group = 'com.couchbase.client'
|
||||||
module = 'java-client'
|
module = 'java-client'
|
||||||
versions = "[2.7.9,)"
|
versions = "[2.7.9,3.0.0)"
|
||||||
}
|
}
|
||||||
fail {
|
fail {
|
||||||
group = 'com.couchbase.client'
|
group = 'com.couchbase.client'
|
||||||
|
@ -58,6 +58,6 @@ dependencies {
|
||||||
testCompile group: 'com.couchbase.client', name: 'encryption', version: '1.0.0'
|
testCompile group: 'com.couchbase.client', name: 'encryption', version: '1.0.0'
|
||||||
|
|
||||||
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-couchbase', version: '3.1+'
|
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-couchbase', version: '3.1+'
|
||||||
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.6+'
|
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.+'
|
||||||
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '+'
|
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '+'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue