Search Gradle plugins

Version 1.0.0 (latest)

Created 31 January 2023.

Fork of the official Jacoco plugin that supports offline instrumentation.

Using the plugins DSL:

plugins {
  id("net.smoofyuniverse.jacoco-report-aggregation-offline") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.smoofyuniverse:jacoco-offline:1.0.0")
  }
}

apply(plugin = "net.smoofyuniverse.jacoco-report-aggregation-offline")

Using the plugins DSL:

plugins {
  id "net.smoofyuniverse.jacoco-report-aggregation-offline" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.smoofyuniverse:jacoco-offline:1.0.0"
  }
}

apply plugin: "net.smoofyuniverse.jacoco-report-aggregation-offline"

Learn how to apply plugins to subprojects