-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support JAX-RS client typed entities - message body writer/reader (#162)
* Support JAX-RS client typed entities - message body writer/reader Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * working Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Split modules Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Add muzzle Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Add comment Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Remove wrong license Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Fix muzzle Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
- Loading branch information
1 parent
84526bd
commit 22c528a
Showing
13 changed files
with
201 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
plugins { | ||
`java-library` | ||
id("net.bytebuddy.byte-buddy") | ||
} | ||
|
||
afterEvaluate{ | ||
io.opentelemetry.instrumentation.gradle.bytebuddy.ByteBuddyPluginConfigurator(project, | ||
sourceSets.main.get(), | ||
"io.opentelemetry.javaagent.tooling.muzzle.collector.MuzzleCodeGenerationPlugin", | ||
project(":javaagent-tooling").configurations["instrumentationMuzzle"] + configurations.runtimeClasspath | ||
).configure() | ||
} |
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
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
Oops, something went wrong.