Skip to content

Commit d0ef024

Browse files
committed
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-instrumentation into indy-migration-2
2 parents 330cf7a + 8a3a07f commit d0ef024

File tree

25 files changed

+187
-45
lines changed

25 files changed

+187
-45
lines changed

benchmark-overhead-jmh/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ otelJava {
1313
}
1414

1515
dependencies {
16-
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.4.5")
16+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.5.0")
1717
}
1818

1919
tasks {

benchmark-overhead/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

docs/contributing/running-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Java versions
44

5-
Open Telemetry Auto Instrumentation's minimal supported version is java 8.
5+
OpenTelemetry Auto Instrumentation's minimal supported version is java 8.
66
All jar files that we produce, unless noted otherwise, have bytecode
77
compatibility with the java 8 runtime. Our test suite is executed against
88
java 8, all LTS versions and the latest non-LTS version.

examples/distro/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

examples/extension/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradle-plugins/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

instrumentation/apache-httpclient/apache-httpclient-5.2/library/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ public class ApacheHttpClientConfiguration {
4747
this.openTelemetry = openTelemetry;
4848
}
4949

50-
// creates a new http client builder for constructing http clients with open telemetry instrumentation
50+
// creates a new http client builder for constructing http clients with opentelemetry instrumentation
5151
public HttpClientBuilder createBuilder() {
5252
return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClientBuilder();
5353
}
5454

55-
// creates a new http client with open telemetry instrumentation
55+
// creates a new http client with opentelemetry instrumentation
5656
public HttpClient newHttpClient() {
5757
return ApacheHttpClientTelemetry.builder(openTelemetry).build().newHttpClient();
5858
}

instrumentation/jaxrs-client/jaxrs-client-2.0-testing/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ dependencies {
88
testLibrary("org.glassfish.jersey.core:jersey-client:2.0")
99
testLibrary("org.jboss.resteasy:resteasy-client:3.0.5.Final")
1010
// ^ This version has timeouts https://issues.redhat.com/browse/RESTEASY-975
11-
testLibrary("org.apache.cxf:cxf-rt-rs-client:3.1.0")
11+
// testLibrary("org.apache.cxf:cxf-rt-rs-client:3.1.0")
12+
testImplementation("org.apache.cxf:cxf-rt-rs-client:3.1.0")
1213
// Doesn't work with CXF 3.0.x because their context is wrong:
1314
// https://github.com/apache/cxf/commit/335c7bad2436f08d6d54180212df5a52157c9f21
1415

@@ -24,7 +25,8 @@ dependencies {
2425
latestDepTestLibrary("org.glassfish.jersey.inject:jersey-hk2:2.+")
2526
latestDepTestLibrary("org.glassfish.jersey.core:jersey-client:2.+")
2627
latestDepTestLibrary("org.jboss.resteasy:resteasy-client:3.0.26.Final")
27-
latestDepTestLibrary("org.apache.cxf:cxf-rt-rs-client:3.+")
28+
// latestDepTestLibrary("org.apache.cxf:cxf-rt-rs-client:3.+")
29+
latestDepTestLibrary("org.apache.cxf:cxf-rt-rs-client:3.6.6")
2830
}
2931

3032
// Requires old Guava. Can't use enforcedPlatform since predates BOM

instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-cxf-3.2/javaagent/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ muzzle {
1010
module.set("cxf-rt-frontend-jaxrs")
1111
versions.set("[3.2,4)")
1212
extraDependency("javax.servlet:javax.servlet-api:3.1.0")
13+
skip("3.6.7") // version is present in maven metadata, but pom and jar are missing
1314
}
1415
pass {
1516
group.set("org.apache.tomee")
@@ -26,7 +27,9 @@ dependencies {
2627

2728
compileOnly("javax.ws.rs:javax.ws.rs-api:2.0")
2829
compileOnly("javax.servlet:javax.servlet-api:3.1.0")
29-
library("org.apache.cxf:cxf-rt-frontend-jaxrs:3.2.0")
30+
// library("org.apache.cxf:cxf-rt-frontend-jaxrs:3.2.0")
31+
compileOnly("org.apache.cxf:cxf-rt-frontend-jaxrs:3.2.0")
32+
testImplementation("org.apache.cxf:cxf-rt-frontend-jaxrs:3.2.0")
3033

3134
implementation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:javaagent"))
3235

@@ -47,7 +50,8 @@ dependencies {
4750
testLibrary("org.apache.cxf:cxf-rt-ws-policy:3.2.0")
4851

4952
latestDepTestLibrary("org.eclipse.jetty:jetty-webapp:10.+") // documented limitation
50-
latestDepTestLibrary("org.apache.cxf:cxf-rt-frontend-jaxrs:3.+") // documented limitation
53+
latestDepTestLibrary("org.apache.cxf:cxf-rt-frontend-jaxrs:3.6.6") // documented limitation
54+
// latestDepTestLibrary("org.apache.cxf:cxf-rt-frontend-jaxrs:3.+") // documented limitation
5155
latestDepTestLibrary("org.apache.cxf:cxf-rt-transports-http-jetty:3.+") // documented limitation
5256
latestDepTestLibrary("org.apache.cxf:cxf-rt-ws-policy:3.+") // documented limitation
5357
}

0 commit comments

Comments
 (0)