com.zoltu.application-agent
Owner: Micah Zoltu
A Gradle plugin for hooking up a Java Agent. This plugin will attach the agent you specify to the `run`, `test` and `installDist` tasks. To use it, add an `agent` dependency to your dependencies like `dependencies { agent("com.foo:bar:1.2.3") }`.
https://github.com/Zoltu/application-agent-gradle-plugin
Sources: https://github.com/Zoltu/application-agent-gradle-plugin
Version 1.0.14 (latest)
Created 15 April 2017.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.zoltu.application-agent") version "1.0.14"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.zoltu.application-agent:com.zoltu.application-agent.gradle.plugin:1.0.14") }
It can then be applied in the precompiled script plugin:plugins { id("com.zoltu.application-agent") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.zoltu.application-agent:com.zoltu.application-agent.gradle.plugin:1.0.14") } } apply(plugin = "com.zoltu.application-agent")
- Applying plugins to all subprojects .