com.here.jobdsl
Owner: HERE Maps
A Gradle plugin to manage Jenkins Job DSL scripts.
https://github.com/heremaps/gradle-jenkins-jobdsl-plugin
Sources: https://github.com/heremaps/gradle-jenkins-jobdsl-plugin
Version 2.1.1-SNAPSHOT
2.1.1-SNAPSHOT
Created 04 December 2017.
A Gradle plugin to manage Jenkins Job DSL scripts.
Using the plugins DSL:
plugins {
id("com.here.jobdsl") version "2.1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.here.gradle.plugins:gradle-jenkins-jobdsl-plugin:2.1.1-SNAPSHOT")
}
}
apply(plugin = "com.here.jobdsl")
Using the plugins DSL:
plugins {
id "com.here.jobdsl" version "2.1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.here.gradle.plugins:gradle-jenkins-jobdsl-plugin:2.1.1-SNAPSHOT"
}
}
apply plugin: "com.here.jobdsl"