Unnecessary Labels in Pipeline displays

This issue is archived. You can view it, but you can't modify it. Learn more

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.

       

            Assignee:
            Unassigned
            Reporter:
            Sougata Das
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: