Undo Couchbase gradle hack
Looks like 2.7.5 has now fully propagated through the mirrors so we can revert hack that made things compile.
This commit is contained in:
parent
69a780a940
commit
0851dc4826
|
@ -17,15 +17,8 @@ muzzle {
|
|||
pass {
|
||||
group = 'com.couchbase.client'
|
||||
module = 'java-client'
|
||||
// Looks like 2.7.5 was just released and didn't sync up with mirrors properly causing build failures
|
||||
// TODO: remove this on a few days.
|
||||
versions = "[2.0.0,2.7.5)"
|
||||
// assertInverse = true
|
||||
}
|
||||
fail {
|
||||
group = 'com.couchbase.client'
|
||||
module = 'java-client'
|
||||
versions = "(,2.0.0)"
|
||||
versions = "[2.0.0,)"
|
||||
assertInverse = true
|
||||
}
|
||||
fail {
|
||||
group = 'com.couchbase.client'
|
||||
|
@ -53,8 +46,6 @@ dependencies {
|
|||
testCompile group: 'com.couchbase.client', name: 'java-client', version: '2.5.0'
|
||||
|
||||
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-couchbase', version: '3.+'
|
||||
// Looks like 2.7.5 was just released and didn't sync up with mirrors properly causing build failures
|
||||
// TODO: remove this on a few days.
|
||||
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.7.4'
|
||||
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '1.0.0'
|
||||
latestDepTestCompile group: 'com.couchbase.client', name: 'java-client', version: '2.6+'
|
||||
latestDepTestCompile group: 'com.couchbase.client', name: 'encryption', version: '+'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue