Skip to content

Commit

Permalink
Fix testLatestDeps (#6791)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Sep 30, 2022
1 parent 6416a14 commit dc7e072
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ dependencies {
// vertx-codegen dependency is needed for Xlint's annotation checking
library("io.vertx:vertx-codegen:4.0.0")

// concurrency tests are failing with 4.3.4
// tracking at https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/6790
latestDepTestLibrary("io.vertx:vertx-core:4.3.3")

implementation(project(":instrumentation:vertx:vertx-http-client:vertx-http-client-common:javaagent"))

testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ dependencies {
add("version35TestImplementation", "io.vertx:vertx-jdbc-client:$vertxVersion")
add("version35TestImplementation", "io.vertx:vertx-circuit-breaker:$vertxVersion")

add("latestDepTestImplementation", "io.vertx:vertx-web:4.+")
add("latestDepTestImplementation", "io.vertx:vertx-rx-java2:4.+")
add("latestDepTestImplementation", "io.vertx:vertx-web-client:4.+")
add("latestDepTestImplementation", "io.vertx:vertx-jdbc-client:4.+")
add("latestDepTestImplementation", "io.vertx:vertx-circuit-breaker:4.+")
// concurrency tests are failing with 4.3.4
// tracking at https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/6790
add("latestDepTestImplementation", "io.vertx:vertx-web:4.3.3")
add("latestDepTestImplementation", "io.vertx:vertx-rx-java2:4.3.3")
add("latestDepTestImplementation", "io.vertx:vertx-web-client:4.3.3")
add("latestDepTestImplementation", "io.vertx:vertx-jdbc-client:4.3.3")
add("latestDepTestImplementation", "io.vertx:vertx-circuit-breaker:4.3.3")
}

0 comments on commit dc7e072

Please sign in to comment.