Search Gradle plugins

Version 1.0.4.1

Created 27 April 2022.

A plugin to allow Gradle projects to report their jUnit results to endpoints defined

Using the plugins DSL:

plugins {
  id("com.visus.infrastructure.junitreports") version "1.0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.visus.infrastructure:jUnitReportsPlugin:1.0.4.1")
  }
}

apply(plugin = "com.visus.infrastructure.junitreports")

Using the plugins DSL:

plugins {
  id "com.visus.infrastructure.junitreports" version "1.0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.visus.infrastructure:jUnitReportsPlugin:1.0.4.1"
  }
}

apply plugin: "com.visus.infrastructure.junitreports"

Learn how to apply plugins to subprojects