搜索 Gradle 插件

com.github.fowlie.gradle-jenkins-test

一个 Gradle 插件,它会更新测试报告的 时间戳,以便 Jenkins 不会将构建标记为失败。

https://github.com/fowlie/gradle-jenkins-test

版本 0.3 (最新版)

0.3

创建于 2014 年 10 月 22 日。

使用 plugins DSL

plugins {
  id("com.github.fowlie.gradle-jenkins-test") version "0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.fowlie:gradle-jenkins-test:0.3")
  }
}

apply(plugin = "com.github.fowlie.gradle-jenkins-test")

使用 plugins DSL

plugins {
  id "com.github.fowlie.gradle-jenkins-test" version "0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.fowlie:gradle-jenkins-test:0.3"
  }
}

apply plugin: "com.github.fowlie.gradle-jenkins-test"

了解如何将插件应用到子项目