org.starchartlabs.flare.increased-test-logging
Owner: Ryan O'Meara
Apply a convention for more verbose test logging in Gradle test executions
https://github.com/StarChart-Labs/flare-plugins
Sources: https://github.com/StarChart-Labs/flare-plugins
Version 0.1.0
0.1.0
Created 24 July 2019.
Apply a convention for more verbose test logging in Gradle test executions
Using the plugins DSL:
plugins {
id("org.starchartlabs.flare.increased-test-logging") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.starchartlabs.flare:flare-plugins:0.1.0")
}
}
apply(plugin = "org.starchartlabs.flare.increased-test-logging")
Using the plugins DSL:
plugins {
id "org.starchartlabs.flare.increased-test-logging" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.starchartlabs.flare:flare-plugins:0.1.0"
}
}
apply plugin: "org.starchartlabs.flare.increased-test-logging"