io.github.cdsap.testprocess
Owner: Inaki Villar Algaba
Retrieve information of the Test processes after the build execution
https://github.com/cdsap/InfoTestProcess
Sources: https://github.com/cdsap/InfoTestProcess
Version 0.1.4 (latest)
0.1.4
Created 25 July 2024.
Retrieve information of the Test processes after the build execution
Using the plugins DSL:
plugins {
id("io.github.cdsap.testprocess") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.cdsap:InfoTestProcess:0.1.4")
}
}
apply(plugin = "io.github.cdsap.testprocess")
Using the plugins DSL:
plugins {
id "io.github.cdsap.testprocess" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.cdsap:InfoTestProcess:0.1.4"
}
}
apply plugin: "io.github.cdsap.testprocess"