io.github.torrescd.junitxml-gradle-plugin
Owner: Daniel Torrescusa
junitxml-gradle-plugin
https://github.com/torrescd/junitxml-gradle-plugin
Sources: https://github.com/torrescd/junitxml-gradle-plugin
Version 0.0.7-SNAPSHOT.10 (latest)
0.0.7-SNAPSHOT.10
Created 07 March 2022.
junitxml-gradle-plugin
Using the plugins DSL:
plugins {
id("io.github.torrescd.junitxml-gradle-plugin") version "0.0.7-SNAPSHOT.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.torrescd:junit-gradle-plugin:0.0.7-SNAPSHOT.10")
}
}
apply(plugin = "io.github.torrescd.junitxml-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.torrescd.junitxml-gradle-plugin" version "0.0.7-SNAPSHOT.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.torrescd:junit-gradle-plugin:0.0.7-SNAPSHOT.10"
}
}
apply plugin: "io.github.torrescd.junitxml-gradle-plugin"