Search Gradle plugins

Version 1.0.3 (latest)

1.0.3

Created 27 November 2024.

Finalize Test tasks with JacocoReport and JacocoCoverageVerification tasks

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal.gradle-plugins.finalize-by-jacoco:finalize-by-jacoco:1.0.3")
      }
    }
    
    apply(plugin = "name.remal.finalize-by-jacoco")
  • Applying plugins to all subprojects .