-
Notifications
You must be signed in to change notification settings - Fork 987
move Declarative config bridge to a dedicated module #14548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
move Declarative config bridge to a dedicated module #14548
Conversation
@laurit please have a look |
Co-authored-by: Jay DeLuca <[email protected]>
...e-config-bridge/src/main/java/io/opentelemetry/instrumentation/sdk/ConfigPropertiesUtil.java
Outdated
Show resolved
Hide resolved
@laurit please take a look 😄 |
javaagent-tooling/build.gradle.kts
Outdated
implementation(project(":declarative-config-bridge")) { | ||
// is part of bootstrap classpath | ||
exclude(group = "io.opentelemetry", module = "opentelemetry-api-incubator") | ||
exclude(group = "io.opentelemetry", module = "opentelemetry-sdk-extension-autoconfigure-spi") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need these exclusions? e.g. instrumentation-api-incubator
above doesn't have the exclusion for opentelemetry-api-incubator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -57,6 +57,7 @@ dependencies { | |||
bootstrapLibs(project(":instrumentation-api")) | |||
// opentelemetry-api is an api dependency of :instrumentation-api, but opentelemetry-api-incubator is not | |||
bootstrapLibs("io.opentelemetry:opentelemetry-api-incubator") | |||
bootstrapLibs(project(":instrumentation-api-incubator")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we remove this now that we've moved it over to declarative-config-bridge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this just restores the way things were before the bridge was added
No description provided.