ant/docs/manual/CoreTasks/buildnumber.html

47 lines
1.3 KiB
HTML
Raw Normal View History

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<title>Buildnumber Task</title>
</head>
<body>
<h2><a name="buildnumber">Buildnumber</a></h2>
<h3>Description</h3>
<p>This is a basic task that can be used to track build numbers.</p>
<p>It will first attempt to read a build number from a file, then
set the property "build.number" to the value that was read in
(or 0 if no such value). Then it will increment the build number
by one and write it back out into the file.</p>
<h3>Parameters</h3>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">file</td>
<td valign="top">the file to read and write build number from.</td>
<td align="center" valign="top">No, defaults to &quot;build.number&quot;</td>
</tr>
</table>
<h3>Examples</h3>
<pre> &lt;buildnumber/&gt;</pre>
<p>Read, increment and write a build number to the default file &quot;build.number&quot;.</p>
<pre> &lt;buildnumber file=&quot;mybuild.number&quot;/&gt;</pre>
<p>Read, increment and write a build number to the file &quot;mybuild.number&quot;.</p>
<hr><p align="center">Copyright &copy; 2002 Apache Software Foundation. All rights
Reserved.</p>
</body>
</html>