Search Gradle plugins

Version 2.2.0 (latest)

Created 30 October 2023.

Test results aggregation support for Android/JVM modules

Using the plugins DSL:

plugins {
  id("io.github.gmazzo.test.aggregation.results") version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gmazzo.test.aggregation:plugin:2.2.0")
  }
}

apply(plugin = "io.github.gmazzo.test.aggregation.results")

Using the plugins DSL:

plugins {
  id "io.github.gmazzo.test.aggregation.results" version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gmazzo.test.aggregation:plugin:2.2.0"
  }
}

apply plugin: "io.github.gmazzo.test.aggregation.results"

Learn how to apply plugins to subprojects