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)
1.0.14
Created 15 April 2017.
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") }`.
Using the plugins DSL:
plugins {
id("com.zoltu.application-agent") version "1.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.zoltu:application-agent:1.0.14")
}
}
apply(plugin = "com.zoltu.application-agent")
Using the plugins DSL:
plugins {
id "com.zoltu.application-agent" version "1.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.zoltu:application-agent:1.0.14"
}
}
apply plugin: "com.zoltu.application-agent"