Search Gradle plugins

Version 0.1.0 (latest)

Created 23 October 2020.

Test kit for Gradle plugin testing

Using the plugins DSL:

plugins {
  id("io.bootstage.testkit") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.bootstage.testkit:testkit-gradle:0.1.0")
  }
}

apply(plugin = "io.bootstage.testkit")

Using the plugins DSL:

plugins {
  id "io.bootstage.testkit" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.bootstage.testkit:testkit-gradle:0.1.0"
  }
}

apply plugin: "io.bootstage.testkit"

Learn how to apply plugins to subprojects