Synopsis This shows usage of a simple build wrapper, specifically the AnsiColor plugin, which adds ANSI coloring to the console output. // This shows a simple build wrapper example, using the AnsiColor plugin. node { // This displays colors using the 'xterm' ansi color map. ansiColor('xterm') { // Just some echoes to show the ANSI color. stage "\u001B[31mI'm Red\u001B[0m Now not" } }