Search Gradle plugins

Version 3.1.0 (latest)

Created 16 February 2023.

Aggregates and/or logs Jacoco test coverage to the Gradle build log

Using the plugins DSL:

plugins {
  id("org.barfuin.gradle.jacocolog") version "3.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.barfuin.gradle.jacocolog:gradle-jacoco-log:3.1.0")
  }
}

apply(plugin = "org.barfuin.gradle.jacocolog")

Using the plugins DSL:

plugins {
  id "org.barfuin.gradle.jacocolog" version "3.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.barfuin.gradle.jacocolog:gradle-jacoco-log:3.1.0"
  }
}

apply plugin: "org.barfuin.gradle.jacocolog"

Learn how to apply plugins to subprojects