Search Gradle plugins

Version 0.0.1-alpha.0.1+4f9c77e4

0.0.1-alpha.0.1+4f9c77e4

Created 18 October 2024.

supports unified coverage for multiple jvm-test-suites

Using the plugins DSL:

plugins {
  id("com.xenoterracide.gradle.convention.coverage") version "0.0.1-alpha.0.1+4f9c77e4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.xenoterracide.gradle.convention:coverage:0.0.1-alpha.0.1+4f9c77e4")
  }
}

apply(plugin = "com.xenoterracide.gradle.convention.coverage")

Using the plugins DSL:

plugins {
  id "com.xenoterracide.gradle.convention.coverage" version "0.0.1-alpha.0.1+4f9c77e4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.xenoterracide.gradle.convention:coverage:0.0.1-alpha.0.1+4f9c77e4"
  }
}

apply plugin: "com.xenoterracide.gradle.convention.coverage"

Learn how to apply plugins to subprojects