ES deploy workaround.
This commit is contained in:
parent
fbd16d8cb7
commit
079dfd24bd
|
@ -44,8 +44,10 @@ dependencies {
|
|||
testCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.4.0'
|
||||
testCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.4.0'
|
||||
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: '6.+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '6.+'
|
||||
latestDepTestCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.+'
|
||||
// TODO: The tests are incompatible with 7.x. The instrumentation may be as well.
|
||||
// FIXME: Lock to specific version due to bad deploy rollout.
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: '6.8.3'
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '6.8.3'
|
||||
latestDepTestCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.8.3'
|
||||
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.8.3'
|
||||
}
|
||||
|
|
|
@ -8,7 +8,8 @@ muzzle {
|
|||
group = "org.elasticsearch.client"
|
||||
module = "transport"
|
||||
versions = "[5.3.0,6.0.0)"
|
||||
assertInverse = true
|
||||
// Work around for a bad release of 6.8.4
|
||||
// assertInverse = true
|
||||
}
|
||||
pass {
|
||||
group = "org.elasticsearch"
|
||||
|
|
|
@ -8,7 +8,8 @@ muzzle {
|
|||
group = "org.elasticsearch.client"
|
||||
module = "transport"
|
||||
versions = "[5.0.0,5.3.0)"
|
||||
assertInverse = true
|
||||
// Work around for a bad release of 6.8.4
|
||||
// assertInverse = true
|
||||
}
|
||||
pass {
|
||||
group = "org.elasticsearch"
|
||||
|
|
|
@ -7,8 +7,9 @@ muzzle {
|
|||
pass {
|
||||
group = "org.elasticsearch.client"
|
||||
module = "transport"
|
||||
versions = "[6.0.0,)"
|
||||
assertInverse = true
|
||||
versions = "[6.0.0,6.8.4)"
|
||||
// Work around for a bad release of 6.8.4
|
||||
// assertInverse = true
|
||||
}
|
||||
pass {
|
||||
group = "org.elasticsearch"
|
||||
|
|
Loading…
Reference in New Issue