Search Gradle plugins

Version 0.1.0 (latest)

Created 21 January 2016.

Prints the summary of run, failed and skipped tests at the end of the build

Using the plugins DSL:

plugins {
  id("com.jandyco.test-results") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.jandyco:test-results:0.1.0")
  }
}

apply(plugin = "com.jandyco.test-results")

Using the plugins DSL:

plugins {
  id "com.jandyco.test-results" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.jandyco:test-results:0.1.0"
  }
}

apply plugin: "com.jandyco.test-results"

Learn how to apply plugins to subprojects