Search Gradle plugins

org.deltafi.test-summary

Owner: Deltafi

Summarize test executions after Gradle tasks have run

https://deltafi.org

Sources: https://github.com/deltafi-org/deltafi

Version 1.0.0 (latest)

Created 20 July 2023.

Adds a test summary after gradle tasks execute

Using the plugins DSL:

plugins {
  id("org.deltafi.test-summary") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.deltafi.test-summary:test-summary:1.0.0")
  }
}

apply(plugin = "org.deltafi.test-summary")

Using the plugins DSL:

plugins {
  id "org.deltafi.test-summary" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.deltafi.test-summary:test-summary:1.0.0"
  }
}

apply plugin: "org.deltafi.test-summary"

Learn how to apply plugins to subprojects