Search Gradle plugins

com.zoltu.application-agent

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") }`.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zoltu.application-agent") version "1.0.14"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.zoltu:application-agent:1.0.14")
      }
    }
    
    apply(plugin = "com.zoltu.application-agent")
  • Applying plugins to all subprojects .