# parameter-separator-plugin **Repository Path**: mamh-java/parameter-separator-plugin ## Basic Information - **Project Name**: parameter-separator-plugin - **Description**: https://github.com/mamh-java/parameter-separator-plugin - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-14 - **Last Updated**: 2025-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Parameter Separator Plugin [![Build Status](https://ci.jenkins.io/job/Plugins/job/parameter-separator-plugin/job/master/badge/icon)](https://ci.jenkins.io/job/Plugins/job/parameter-separator-plugin/job/master/) [![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/parameter-separator.svg)](https://plugins.jenkins.io/parameter-separator) [![GitHub Release](https://img.shields.io/github/release/jenkinsci/parameter-separator-plugin.svg?label=changelog)](https://github.com/jenkinsci/parameter-separator-plugin/releases/latest) [![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/parameter-separator.svg?color=blue)](https://plugins.jenkins.io/parameter-separator) ## Introduction This is a simple plugin for Jenkins CI that allows one to clearly differentiate sets of parameters on a job build page. This can be useful for jobs with lots of parameters. Specifically, the plugin creates a stylizable separator that consists of <hr /> tag with an optional section header. The styling of both the horizontal rule and the section header can be customized, both globally and for each individual separator. ### Example "Build with Parameters" page with separators ![](github_site/img/job-build-1.png) ## Installing and configuring the plugin Install this plugin from the Jenkins Update Center. Go to Manage Jenkins -> Plugin Manager -> Available tab. Search for "Parameter Separator". Configure default styling for your parameters in the Jenkins global configuration page. Go to Manage Jenkins -> Configure System -> "Parameter Separator" section. ![](github_site/img/global-config.png) ## Using the plugin in freestyle jobs Go to you job Configure page and add any number of parameter separator elements: ![](github_site/img/job-config.png) Optionally you can use HTML, customize styles, and click Preview to see how it will look: ![](github_site/img/job-config-with-preview.png) Now, go to you job's **Build with Parameters** page. You'll see you parameter groups nicely separated: ![](github_site/img/job-build-4.png) When your build is ready and you go to its **Parameters** section, you'll also see separators: ![](github_site/img/build-params-4.png) ## Using in pipeline jobs **Note:** It's recommended to provide an explicit name for each separator parameter, when using in pipeline. Otherwise, it will be redefined under a new random name during each build, which can cause some minor issues. For example, the "Job Configuration History" plugin will indicate that each has changed job configuration. --- ### Example usage in declarative pipeline ```groovy pipeline { agent any parameters { separator(name: "building") choice(name: "java_vendor", choices: "Corretto") choice(name: "java_version", choices: "11") separator(name: "testing") choice(name: "browser", choices: "chrome") separator(name: "end") } stages { stage("Build") { steps { echo "Building using ${params.java_vendor}-${params.java_version}" } } } } ``` ![](github_site/img/job-build-3.png) --- ### Example usage in scripted pipeline, with section headers ```groovy properties([ parameters([ separator(name: "BUILD_ENVIRONMENT", sectionHeader: "Build Environment"), choice(name: "JAVA_VENDOR", choices: ["Coretto"]), choice(name: "JAVA_VERSION", choices: ["11"]), separator(name: "TEST_ENVIRONMENT", sectionHeader: "Test Environment"), choice(name: "OS", choices: ["Linux"]), choice(name: "BROWSER", choices: ["Chrome"]) ]) ]) ``` ![](github_site/img/job-build-2.png) --- ### Example usage in scripted pipeline, with advanced custom styling ```groovy properties([ parameters([ separator(name: "BUILD_ENVIRONMENT", sectionHeader: "Build Environment", separatorStyle: "border-width: 0", sectionHeaderStyle: """ background-color: #7ea6d3; text-align: center; padding: 4px; color: #343434; font-size: 22px; font-weight: normal; text-transform: uppercase; font-family: 'Orienta', sans-serif; letter-spacing: 1px; font-style: italic; """ ), choice(name: "JAVA_VENDOR", choices: ["Coretto"]), choice(name: "JAVA_VERSION", choices: ["11"]), separator(name: "TEST_ENVIRONMENT", sectionHeader: "Test Environment", separatorStyle: "border-width: 0", sectionHeaderStyle: """ background-color: #dbdb8e; text-align: center; padding: 4px; color: #343434; font-size: 22px; font-weight: normal; text-transform: uppercase; font-family: 'Orienta', sans-serif; letter-spacing: 1px; font-style: italic; """ ), choice(name: "OS", choices: ["Linux"]), choice(name: "BROWSER", choices: ["Chrome"]) ]) ]) ``` ![](github_site/img/job-build-4.png)