Implement the changes
Task
Change the Groovy view rendering the Build Flow from displaying the build display name instead of the build number. Rebuild the project to check for any syntax or compiling errors.
Hints
Show / Hide
- Take a look at the JavaDocs for available AbstractBuild methods
- Source file for the Groovy view is located in resources
- Change the current implementation at line 46 from
span("${build.parent.name} #${build.number}")
to
span("${build.parent.name} ${build.displayName}")