Skip to content

Commit d9cd13f

Browse files
committed
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-instrumentation into indy-leftovers
2 parents 77a4f00 + e9227c3 commit d9cd13f

31 files changed

+1621
-1532
lines changed

dependencyManagement/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ val DEPENDENCIES = listOf(
9090
"com.uber.nullaway:nullaway:0.12.3",
9191
"commons-beanutils:commons-beanutils:1.10.0",
9292
"commons-cli:commons-cli:1.9.0",
93-
"commons-codec:commons-codec:1.17.2",
93+
"commons-codec:commons-codec:1.18.0",
9494
"commons-collections:commons-collections:3.2.2",
9595
"commons-digester:commons-digester:2.1",
9696
"commons-fileupload:commons-fileupload:1.5",

instrumentation/vertx/vertx-rx-java-3.5/javaagent/build.gradle.kts

+8-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ testing {
2929
suites {
3030
val version35Test by registering(JvmTestSuite::class) {
3131
dependencies {
32-
implementation("org.hsqldb:hsqldb:2.3.4")
32+
// this only exists to make Intellij happy since it doesn't (currently at least) understand our
33+
// inclusion of this artifact inside :testing-common
34+
compileOnly(project.dependencies.project(":testing:armeria-shaded-for-testing", configuration = "shadow"))
3335

36+
implementation("org.hsqldb:hsqldb:2.3.4")
3437
compileOnly("io.vertx:vertx-codegen:$vertxVersion")
3538
implementation("io.vertx:vertx-web:$vertxVersion")
3639
implementation("io.vertx:vertx-rx-java2:$vertxVersion")
@@ -42,8 +45,11 @@ testing {
4245

4346
val latestDepTest by registering(JvmTestSuite::class) {
4447
dependencies {
45-
implementation("org.hsqldb:hsqldb:2.3.4")
48+
// this only exists to make Intellij happy since it doesn't (currently at least) understand our
49+
// inclusion of this artifact inside :testing-common
50+
compileOnly(project.dependencies.project(":testing:armeria-shaded-for-testing", configuration = "shadow"))
4651

52+
implementation("org.hsqldb:hsqldb:2.3.4")
4753
implementation("io.vertx:vertx-web:latest.release")
4854
implementation("io.vertx:vertx-rx-java2:latest.release")
4955
implementation("io.vertx:vertx-web-client:latest.release")

instrumentation/vertx/vertx-rx-java-3.5/javaagent/src/latestDepTest/groovy/VertxReactivePropagationTest.groovy

-219
This file was deleted.

instrumentation/vertx/vertx-rx-java-3.5/javaagent/src/latestDepTest/groovy/client/VertxRxCircuitBreakerWebClientTest.groovy

-126
This file was deleted.

0 commit comments

Comments
 (0)