org.caffinitas.gradle.testrerun
Owner: Robert Stupp
Rerun cached tests and repeated test runs
https://github.com/snazy/gradle-test-rerun/
Sources: https://github.com/snazy/gradle-testrerun/
Version 0.1 (latest)
0.1
Created 29 May 2020.
Rerun cached tests and repeated test runs
Using the plugins DSL:
plugins {
id("org.caffinitas.gradle.testrerun") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.caffinitas.gradle.testrerun:gradle-test-rerun:0.1")
}
}
apply(plugin = "org.caffinitas.gradle.testrerun")
Using the plugins DSL:
plugins {
id "org.caffinitas.gradle.testrerun" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.caffinitas.gradle.testrerun:gradle-test-rerun:0.1"
}
}
apply plugin: "org.caffinitas.gradle.testrerun"