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