Search Gradle plugins

com.monnage.test-report

This plugin pre-configures java test task which provides awesome test report output.

https://github.com/monnage/gradle-test-report

Sources: https://github.com/monnage/gradle-test-report

Version 1.4 (latest)

Created 09 December 2020.

This plugin pre-configures java test task which provides awesome test report output.

Using the plugins DSL:

plugins {
  id("com.monnage.test-report") version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.monnage.gradle:gradle-test-report:1.4")
  }
}

apply(plugin = "com.monnage.test-report")

Using the plugins DSL:

plugins {
  id "com.monnage.test-report" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.monnage.gradle:gradle-test-report:1.4"
  }
}

apply plugin: "com.monnage.test-report"

Learn how to apply plugins to subprojects