Search Gradle plugins

Version 2.1.0 (latest)

Created 31 October 2019.

Produces HTML reports from the Junit xml output

Using the plugins DSL:

plugins {
  id("com.kncept.junit.reporter") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.kncept.junit.reporter:junit-reporter:2.1.0")
  }
}

apply(plugin = "com.kncept.junit.reporter")

Using the plugins DSL:

plugins {
  id "com.kncept.junit.reporter" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.kncept.junit.reporter:junit-reporter:2.1.0"
  }
}

apply plugin: "com.kncept.junit.reporter"

Learn how to apply plugins to subprojects