Fix ES version ranges.
This commit is contained in:
parent
7eaf069e45
commit
2b93aa7cbf
|
@ -17,6 +17,14 @@ apply from: "${rootDir}/gradle/java.gradle"
|
|||
|
||||
testJava8Minimum += '**/*Test.class'
|
||||
|
||||
apply plugin: 'org.unbroken-dome.test-sets'
|
||||
|
||||
testSets {
|
||||
latestDepTest {
|
||||
dirName = 'test'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly group: 'org.elasticsearch.client', name: 'transport', version: '5.3.0'
|
||||
|
||||
|
@ -34,4 +42,7 @@ dependencies {
|
|||
|
||||
testCompile group: 'org.elasticsearch.plugin', name: 'transport-netty3-client', version: '5.3.0'
|
||||
testCompile group: 'org.elasticsearch.client', name: 'transport', version: '5.3.0'
|
||||
|
||||
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty3-client', version: '5.+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '5.+'
|
||||
}
|
||||
|
|
|
@ -50,6 +50,6 @@ dependencies {
|
|||
testCompile group: 'org.elasticsearch.plugin', name: 'transport-netty3-client', version: '5.0.0'
|
||||
testCompile group: 'org.elasticsearch.client', name: 'transport', version: '5.0.0'
|
||||
|
||||
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty3-client', version: '+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty3-client', version: '5.2.+'
|
||||
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '5.2.+'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue