com.visus.infrastructure.junitreports
Owner: DevExperte
A plugin to allow Gradle projects to report their jUnit results to endpoints defined
https://github.com/VISUS-Health-IT-GmbH/jUnitReportsPlugin
Sources: https://github.com/VISUS-Health-IT-GmbH/jUnitReportsPlugin.git
Version 1.0.5 (latest)
1.0.5
Created 28 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.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.visus.infrastructure:jUnitReportsPlugin:1.0.5")
}
}
apply(plugin = "com.visus.infrastructure.junitreports")
Using the plugins DSL:
plugins {
id "com.visus.infrastructure.junitreports" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.visus.infrastructure:jUnitReportsPlugin:1.0.5"
}
}
apply plugin: "com.visus.infrastructure.junitreports"