Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-68171

Unnecessary Labels in Pipeline displays

XMLWordPrintable

      I have the following maven build job as below in declarative pipeline and is working fine.

      pipeline {
            agent any
             tools {
                 maven 'test-maven'
                 jdk 'test-jdk'
             }
             stages {
                 stage("Tools initialization") {
                     steps {
                         sh "mvn --version"
                         sh "java -version"
                     }
                 }
                 stage("Checkout Code") {
                     steps {
                         git branch: buildParams.get('branch'),
                             url: buildParams.get('repo')
                     }
                 }
                 stage("Build Maven") {
                     steps {
                         script {
                             String pomFile=buildParams.get('file')
                             String args=buildParams.get('options')
                             sh "mvn -f ${pomFile} ${args}"
                         }
                     }
                 }      
      }
      

      However, in the pipeline view as well as the BlueOcean view, I can see the following labels. Please provide configuration to suppress this display.

       

            Unassigned Unassigned
            sougatadas10 Sougata Das
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: