javaagent-gradle-plugin
javaagent-gradle-plugin copied to clipboard
A set of Gradle plugins to ease building Java applications that leverage instrumentation agents in development and/or in production
Micronaut has a gradle plugin that builds on the application plugin but also creates additional distributions. We should integrate with the micronaut plugin so that all distributions can be created...
The OTel plugin applies the `com.github.johnrengelman.shadow` plugin to your project. This is done in order to unpack the JARs depended on in the `otelInstrumentation`, rename the compiled class files from...
Define an extension point for vendor-specific distributions of this plugin, with a working example serving as the `opentelemetry-java-instrumentation` javaagent plugin. ## Configuration Typed config Gradle plugin extensions exposed to their...
Fix the start script generator to work on windows!
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/ryandens/javaagent-gradle-plugin). This repository currently has no open or...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.gradle.enterprise | `3.17.1` -> `3.17.2` | [](https://docs.renovatebot.com/merge-confidence/)...
When used with the gradle-shadow plugin and creating the shadowDistTar or shadowDistZip instead of the regular distZip and distTar provided by the application plugin the resultant distributions don't contain the...
The Gradle shadow plugin has the ability to create an equivalent distribution but using the shadowed dependencies: https://imperceptiblethoughts.com/shadow/application-plugin/#distributing-the-shadow-jar This plugin seems to set the javaagent path specifically for the ApplicationPlugin's...
Using the application plugin, `applicationDefaultJvmArgs` are inherited by the distribution, however applying this plugin causes those to be overwritten/ignored. Without the plugin applied, I can set: ```kotlin application { //...
It would be cool if it would be possible to pass arguments to an agent. It seems that currently `JavaForkOptionsConfigurer` always does `-javaagent:` only. Arguments could be passed using `-javaagent:=`.