Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
}