com.github.sgnewson.gradle-jenkins-test
所有者: Scott Newson
Gradle Jenkins Test 插件
https://github.com/sgnewson/gradle-jenkins-test
源代码: https://github.com/sgnewson/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"