Executes a groovy script in the Hudson JVM. Typically, the script checks some conditions and changes accordingly the build result, puts badges next to the build in the build history and/or displays information on the build summary page.
The groovy script can use the variable manager, which provides access to the following objects and methods: Example:
    if(manager.logContains(".*uses or overrides a deprecated API.*")) {
      manager.addWarningBadge("Thou shalt not use deprecated methods.")
      manager.createSummary("warning.gif").appendText("<h1>You have been warned!</h1>", false, false, false, "red")
      manager.buildUnstable()
    }
See Hudson Wiki for more information.