Search Gradle plugins

Version 1.1.0

Created 16 March 2020.

Logs JaCoCo test coverage to the Gradle build log

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects