# jenkins-common **Repository Path**: mirrors_spring-projects/jenkins-common ## Basic Information - **Project Name**: jenkins-common - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README = jenkins-common is no longer actively maintained by VMware, Inc. = Common Jenkins DSL The repository contains common building blocks for jobs that use Jenkins Job DSL in the Spring projects. == How to build it ``` ./mvnw clean install ``` == How to use it in Jenkins? It's more than probable that you'll be using a Gradle to build your scripts. It's enough for you to set the following values in your buildscript. [source,groovy] ---- apply plugin: 'groovy' repositories { // for jenkins-common maven { url "http://repo.spring.io/snapshot" } maven { url "http://repo.spring.io/milestone" } maven { url "http://repo.spring.io/release" } // for jenkins-job-dsl plugin maven { url 'http://repo.jenkins-ci.org/releases/' } } configurations { libs compile.extendsFrom libs } dependencies { libs "org.springframework.internal:jenkins-common:${jenkinsCommonVersion}" } task libs(type: Copy) { into 'build/lib' from configurations.libs } build.dependsOn libs ---- We will be uploading the library artifacts to the `repo.spring.io` so we need to add it to the list of repos. That way you'll use the `jenkins-common` as a `compile` dependency but also it will get unpacked to `build/lib` folder. IMPORTANT: Remember to pass the `build/lib/*.jar` as additional classpath element of your seed job Example: [source,groovy] ---- job('spring-cloud-seed') { triggers { githubPush() } scm { git { remote { github('spring-io/build-scripts') } branch('master') } } steps { gradle("clean build") dsl { external('jobs/springcloud/*.groovy') removeAction('DISABLE') removeViewAction('DELETE') ignoreExisting(false) additionalClasspath([ 'src/main/groovy', 'src/main/resources', 'build/lib/*.jar' ].join("\n")) } } } ----