Search Gradle plugins

Version 0.4.0

Created 10 October 2022.

Automatically attaches javaagents to the Java Plugin Test tasks

Using the plugins DSL:

plugins {
  id("com.ryandens.javaagent-test") version "0.4.0"
}

Using legacy plugin application:

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

apply(plugin = "com.ryandens.javaagent-test")

Using the plugins DSL:

plugins {
  id "com.ryandens.javaagent-test" version "0.4.0"
}

Using legacy plugin application:

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

apply plugin: "com.ryandens.javaagent-test"

Learn how to apply plugins to subprojects