Search Gradle plugins

Version 2.0.1

Created 20 June 2019.

Produces HTML reports from the Junit xml output

Using the plugins DSL:

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

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.0.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects