com.github.sgnewson.gradle-jenkins-test
Owner: Scott Newson
Gradle Jenkins Test plugin
https://github.com/sgnewson/gradle-jenkins-test
Sources: https://github.com/sgnewson/gradle-jenkins-test
Using the plugins DSL:
plugins {
id("com.github.sgnewson.gradle-jenkins-test") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.sgnewson:gradle-jenkins-test:0.5")
}
}
apply(plugin = "com.github.sgnewson.gradle-jenkins-test")
Using the plugins DSL:
plugins {
id "com.github.sgnewson.gradle-jenkins-test" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.sgnewson:gradle-jenkins-test:0.5"
}
}
apply plugin: "com.github.sgnewson.gradle-jenkins-test"