Search Gradle plugins

Version 0.1.10 (latest)

0.1.10

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.1.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.xenoterracide.gradle.convention:coverage:0.1.10")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.xenoterracide.gradle.convention.coverage" version "0.1.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.xenoterracide.gradle.convention:coverage:0.1.10"
  }
}

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

Learn how to apply plugins to subprojects