Search Gradle plugins

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)

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"

Learn how to apply plugins to subprojects