搜索 Gradle 插件

版本 0.5 (最新)

0.5

创建时间:2018年1月9日。

Gradle Jenkins Test 插件

使用 plugins DSL

plugins {
  id("com.github.sgnewson.gradle-jenkins-test") version "0.5"
}

使用 旧插件应用

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

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

使用 plugins DSL

plugins {
  id "com.github.sgnewson.gradle-jenkins-test" version "0.5"
}

使用 旧插件应用

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

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

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