Search Gradle plugins

Version 0.4.1

Created 28 November 2022.

Automatically attaches javaagents to the Application Plugin run tasks

Using the plugins DSL:

plugins {
  id("com.ryandens.javaagent-application-run") version "0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ryandens:plugin:0.4.1")
  }
}

apply(plugin = "com.ryandens.javaagent-application-run")

Using the plugins DSL:

plugins {
  id "com.ryandens.javaagent-application-run" version "0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ryandens:plugin:0.4.1"
  }
}

apply plugin: "com.ryandens.javaagent-application-run"

Learn how to apply plugins to subprojects