Search Gradle plugins

Version 3.0.0

Created 26 January 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.0.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.0.0")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects