mirror of
https://github.com/apache/ant.git
synced 2025-05-18 14:04:48 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
|
<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 "build.number"</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<h3>Examples</h3>
|
||
|
<pre> <buildnumber/></pre>
|
||
|
|
||
|
<p>Read, increment and write a build number to the default file "build.number".</p>
|
||
|
|
||
|
<pre> <buildnumber file="mybuild.number"/></pre>
|
||
|
|
||
|
<p>Read, increment and write a build number to the file "mybuild.number".</p>
|
||
|
|
||
|
<hr><p align="center">Copyright © 2002 Apache Software Foundation. All rights
|
||
|
Reserved.</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|