Post-Processor Group
A post-processor group is used to create a single post-processor out of multiple simpler post-processors. The group consists of zero or more child post-processors which will each be applied in order when the group is applied.
Attributes
| Attribute |
Description |
Required? |
Default |
| name |
The name of this post-processor. |
Yes |
|
Child Elements
A post-processor group can contain any number of child post-processors:
| Element |
Description |
Number |
| ant.pp |
Defines an Ant post-processor. |
0 or more |
| junit.pp |
Defines a JUnit report post-processor. |
0 or more |
| make.pp |
Defines a make post-processor. |
0 or more |
| regex.pp |
Defines a regular-expression post-processor. |
0 or more |
| regex-test.pp |
Defines a regular-expression post-processor for exacting test information. |
0 or more |
Examples
A post-processor that searches for errors from make and from a compiler:
<post-processor name="build.pp">
<regex.pp name="compiler.pp">
<pattern category="error" expression="\\..*:[0-9]+: error"/>
</regex.pp>
<make.pp name="make.pp"/>
</post-processor>