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