搜索Gradle插件

com.github.fowlie

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

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

版本 0.2(最新版)

0.2

创建于2014年10月16日。

没有可用的版本描述。

使用插件 DSL

plugins {
  id("com.github.fowlie") version "0.2"
}

使用旧插件应用程序

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

apply(plugin = "com.github.fowlie")

使用插件 DSL

plugins {
  id "com.github.fowlie" version "0.2"
}

使用旧插件应用程序

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

apply plugin: "com.github.fowlie"

学习如何将插件应用于子项目