Search Gradle plugins

com.ryandens.javaagent-application

Automatically attaches javaagents to the Application Plugin run tasks and the main application distributions

https://www.ryandens.com

Sources: https://github.com/ryandens/javaagent-gradle-plugin

Version 0.4.1

Created 28 November 2022.

Automatically attaches javaagents to the Application Plugin run tasks and the main application distributions

Using the plugins DSL:

plugins {
  id("com.ryandens.javaagent-application") 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")

Using the plugins DSL:

plugins {
  id "com.ryandens.javaagent-application" 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"

Learn how to apply plugins to subprojects