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.6

Created 18 March 2016.

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.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.zoltu:application-agent:1.0.6")
  }
}

apply(plugin = "com.zoltu.application-agent")

Using the plugins DSL:

plugins {
  id "com.zoltu.application-agent" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.zoltu:application-agent:1.0.6"
  }
}

apply plugin: "com.zoltu.application-agent"

Learn how to apply plugins to subprojects