swanysimon.show-test-runs
Owner: Simon Smwanson
Increases console output during test runs.
https://github.com/swanysimon/gradleShowTestRunsPlugin
Sources: https://github.com/swanysimon/gradleShowTestRunsPlugin.git
Version 0.0.1 (latest)
0.0.1
Created 17 March 2020.
Increases console output during test runs.
Using the plugins DSL:
plugins {
id("swanysimon.show-test-runs") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("swanysimon.showTestRuns:show-test-runs:0.0.1")
}
}
apply(plugin = "swanysimon.show-test-runs")
Using the plugins DSL:
plugins {
id "swanysimon.show-test-runs" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "swanysimon.showTestRuns:show-test-runs:0.0.1"
}
}
apply plugin: "swanysimon.show-test-runs"