-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bridge opentelemetry api 1.32 (open-telemetry#10026)
Co-authored-by: Mateusz Rzeszutek <[email protected]>
- Loading branch information
1 parent
af20bde
commit 6b2f018
Showing
22 changed files
with
1,019 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
instrumentation/opentelemetry-api/opentelemetry-api-1.32/javaagent/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
plugins { | ||
id("otel.javaagent-instrumentation") | ||
} | ||
|
||
dependencies { | ||
compileOnly(project(":opentelemetry-api-shaded-for-instrumenting", configuration = "v1_32")) | ||
compileOnly("io.opentelemetry:opentelemetry-extension-incubator") | ||
|
||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.4:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.10:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.15:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.27:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.31:javaagent")) | ||
} | ||
|
||
testing { | ||
suites { | ||
val incubatorTest by registering(JvmTestSuite::class) { | ||
dependencies { | ||
implementation("io.opentelemetry:opentelemetry-extension-incubator") | ||
} | ||
} | ||
} | ||
} | ||
|
||
tasks { | ||
check { | ||
dependsOn(testing.suites) | ||
} | ||
} |
Oops, something went wrong.