com.github.fowlie.gradle-jenkins-test
A Gradle plugin that updates test report timestamps, so Jenkins doesn't mark the build as failed.
https://github.com/fowlie/gradle-jenkins-test
Version 0.3 (latest)
0.3
Created 22 October 2014.
Using the plugins DSL:
plugins {
id("com.github.fowlie.gradle-jenkins-test") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.fowlie:gradle-jenkins-test:0.3")
}
}
apply(plugin = "com.github.fowlie.gradle-jenkins-test")
Using the plugins DSL:
plugins {
id "com.github.fowlie.gradle-jenkins-test" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.fowlie:gradle-jenkins-test:0.3"
}
}
apply plugin: "com.github.fowlie.gradle-jenkins-test"