Gradle Plugins

Maintained by aalmiray

Summary

Gradle plugin to programmatically configure Jenkins jobs. This plugin allows you to maintain jenkins job configurations in source control and apply them to the server via gradle. Jobs can be stored as straight xml files, xml strings, or as markup builder closures. Job templates can be defined that can then be manipulated in Groovy XmlSlurper fashion such that multiple jobs can be generated off of a single template definition.

Website https://github.com/ghale/gradle-jenkins-plugin
Author ghale
Version 0.4.0

Usage

buildscript {
    repositories { jcenter() }
    dependencies {
        classpath 'com.terrafolio:gradle-jenkins-plugin:0.4.0'
    }
}
apply plugin: 'jenkins'