com.aoe.jenkins-job-dsl
Owner: Carsten Lenz
This plugin provides some support tasks for maintaining a Jenkins Job DSL Script repository/project
https://github.com/AOEpeople/gradle-jenkins-job-dsl-plugin
Sources: https://github.com/AOEpeople/gradle-jenkins-job-dsl-plugin
Version 2.9.0 (latest)
Created 05 June 2020.
This plugin provides some support tasks for maintaining a Jenkins Job DSL Script repository/project
Add this plugin to your build using the plugins DSL:
plugins {
id("com.aoe.jenkins-job-dsl") version "2.9.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.aoe.jenkins-job-dsl:com.aoe.jenkins-job-dsl.gradle.plugin:2.9.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.aoe.jenkins-job-dsl") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.aoe.jenkins-job-dsl:com.aoe.jenkins-job-dsl.gradle.plugin:2.9.0") } } apply(plugin = "com.aoe.jenkins-job-dsl")
- Applying plugins to all subprojects .