Search Gradle plugins

Version 0.0.9 (latest)

Created 09 April 2024.

Tools for running TestKit tests with Jacoco coverage

Using the plugins DSL:

plugins {
  id("com.toasttab.testkit.coverage") version "0.0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.toasttab.gradle.testkit:coverage-plugin:0.0.9")
  }
}

apply(plugin = "com.toasttab.testkit.coverage")

Using the plugins DSL:

plugins {
  id "com.toasttab.testkit.coverage" version "0.0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.toasttab.gradle.testkit:coverage-plugin:0.0.9"
  }
}

apply plugin: "com.toasttab.testkit.coverage"

Learn how to apply plugins to subprojects