com.ryandens.javaagent-application
Owner: Ryan Dens
Automatically attaches javaagents to the Application Plugin run tasks and the main application distributions
Sources: https://github.com/ryandens/javaagent-gradle-plugin
Version 0.5.1
0.5.1
Created 31 October 2023.
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.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ryandens:plugin:0.5.1")
}
}
apply(plugin = "com.ryandens.javaagent-application")
Using the plugins DSL:
plugins {
id "com.ryandens.javaagent-application" version "0.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ryandens:plugin:0.5.1"
}
}
apply plugin: "com.ryandens.javaagent-application"