Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 15 May 2024.

Finalize Test tasks with JacocoReport and JacocoCoverageVerification tasks

Using the plugins DSL:

plugins {
  id("name.remal.finalize-by-jacoco") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("name.remal.gradle-plugins.finalize-by-jacoco:finalize-by-jacoco:1.0.0")
  }
}

apply(plugin = "name.remal.finalize-by-jacoco")

Using the plugins DSL:

plugins {
  id "name.remal.finalize-by-jacoco" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "name.remal.gradle-plugins.finalize-by-jacoco:finalize-by-jacoco:1.0.0"
  }
}

apply plugin: "name.remal.finalize-by-jacoco"

Learn how to apply plugins to subprojects