搜索Gradle插件

nl.ikoodi.jenkins.jobdsl

所有者: Patrick

A Gradle plugin that let's you build and generate your Jenkins JobDSL scripts. Note: This repository is DEPRECATED, as the Gradle Plugins Portal (https://plugins.gradle.org.cn) now has its own, simplified, way of publishing Gradle plugins. So, please go to https://plugins.gradle.org.cn/plugin/nl.ikoodi.jenkins.jobdsl to find the latest version of this plugin

https://github.com/pvdissel/gradle-jenkins-jobdsl

版本 0.4.1 (最新)

0.4.1

创建于2015年4月17日。

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org.cn/portal-jcenter-impact A Gradle plugin that let's you build and generate your Jenkins JobDSL scripts

使用 plugins DSL

plugins {
  id("nl.ikoodi.jenkins.jobdsl") version "0.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.nl.ikoodi.gradle.plugin:plugin:0.4.1")
  }
}

apply(plugin = "nl.ikoodi.jenkins.jobdsl")

使用 plugins DSL

plugins {
  id "nl.ikoodi.jenkins.jobdsl" version "0.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.nl.ikoodi.gradle.plugin:plugin:0.4.1"
  }
}

apply plugin: "nl.ikoodi.jenkins.jobdsl"

了解如何将插件应用到子项目中