We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bef441 commit 46ac85eCopy full SHA for 46ac85e
runtime-attach/runtime-attach/build.gradle.kts
@@ -5,11 +5,14 @@ plugins {
5
6
description = "To runtime attach the OpenTelemetry Java Instrumentation agent"
7
8
-val agent: Configuration by configurations.creating
+val agent: Configuration by configurations.creating {
9
+ isCanBeResolved = true
10
+ isCanBeConsumed = false
11
+}
12
13
dependencies {
14
implementation(project(":runtime-attach:runtime-attach-core"))
- agent("io.opentelemetry.javaagent:opentelemetry-javaagent:1.15.0")
15
+ agent("io.opentelemetry.javaagent:opentelemetry-javaagent")
16
17
// Used by byte-buddy but not brought in as a transitive dependency.
18
compileOnly("com.google.code.findbugs:annotations")
0 commit comments