Search Gradle plugins

Version 1.2.1 (latest)

Created 28 June 2023.

Code coverage plugin

Using the plugins DSL:

plugins {
  id("com.markklim.popcorn.coverage") version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.markklim.plugins:popcorn-quality:1.2.1")
  }
}

apply(plugin = "com.markklim.popcorn.coverage")

Using the plugins DSL:

plugins {
  id "com.markklim.popcorn.coverage" version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.markklim.plugins:popcorn-quality:1.2.1"
  }
}

apply plugin: "com.markklim.popcorn.coverage"

Learn how to apply plugins to subprojects