Merge pull request #930 from DataDog/tyler/limit-vertx

Limit Vert.x tests to 3.x
This commit is contained in:
Tyler Benson 2019-07-25 15:36:26 -07:00 committed by GitHub
commit df68f8aa10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -52,8 +52,9 @@ dependencies {
testCompile group: 'io.vertx', name: 'vertx-circuit-breaker', version: '3.5.0'
testCompile group: 'io.vertx', name: 'vertx-rx-java2', version: '3.5.0'
latestDepTestCompile group: 'io.vertx', name: 'vertx-web', version: '+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-web-client', version: '+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-circuit-breaker', version: '+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-rx-java2', version: '+'
// Vert.x 4.0 is incompatible with our tests.
latestDepTestCompile group: 'io.vertx', name: 'vertx-web', version: '3.+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-web-client', version: '3.+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-circuit-breaker', version: '3.+'
latestDepTestCompile group: 'io.vertx', name: 'vertx-rx-java2', version: '3.+'
}