-
Bug
-
Resolution: Unresolved
-
Minor
-
None
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.

- is related to
-
JENKINS-68523 BlueOcean steps to use short description
-
- Open
-