|
This page last changed on Apr 27, 2009 by williams.
The Date Labeller is used to generate labels in the format "yyyy.mm.dd.build". Using the Date Labeller makes it easy for the user to identify and communicate the date that a particular build occurred.
<project>
<labeller type="dateLabeller" />
</project>
Configuration Elements:
| Node |
Description |
Type |
Required |
Default |
| yearFormat |
formatting of the year part |
string |
false |
0000 |
| monthFormat |
formatting of the month part |
string |
false |
00 |
dayFormat |
formatting of the day part |
string |
false |
00 |
| revisionFormat |
formatting of the revision element |
string |
false |
000 |
The revision is increased on every build done at the same day, so if you do 2 builds on 2009/01/20, the first will be have label 2009.01.20.001, and the second will be 2009.01.20.002
This labeller has been contributed by Andy Johnstone
|