You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tasksoverview.html 42 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Language" content="en-us">
  18. <link rel="stylesheet" type="text/css" href="stylesheets/style.css">
  19. <title>Overview of Ant Tasks</title>
  20. <base target="mainFrame">
  21. </head>
  22. <body>
  23. <a name="top"></a>
  24. <h2>Overview of Ant Tasks</h2>
  25. <p>Given the large number of tasks available with Ant, it may be
  26. difficult to get an overall view of what each task can do. The following
  27. tables provide a short description of each task and a link to the complete
  28. documentation.</p>
  29. <a href="#archive">Archive Tasks</a><br>
  30. <a href="#audit">Audit/Coverage Tasks</a><br>
  31. <a href="#compile">Compile Tasks</a><br>
  32. <a href="#deploy">Deployment Tasks</a><br>
  33. <a href="#doc">Documentation Tasks</a><br>
  34. <a href="#ejb">EJB Tasks</a><br>
  35. <a href="#exec">Execution Tasks</a><br>
  36. <a href="#file">File Tasks</a><br>
  37. <a href="#extensions">Java2 Extensions Tasks</a><br>
  38. <a href="#log">Logging Tasks</a><br>
  39. <a href="#mail">Mail Tasks</a><br>
  40. <a href="#misc">Miscellaneous Tasks</a><br>
  41. <a href="#net">.NET Tasks</a><br>
  42. <a href="#preproc">Pre-process Tasks</a><br>
  43. <a href="#prop">Property Tasks</a><br>
  44. <a href="#remote">Remote Tasks</a><br>
  45. <a href="#scm">SCM Tasks</a><br>
  46. <a href="#testing">Testing Tasks</a><br>
  47. <p></p>
  48. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  49. <th align="left">
  50. <font size="+0" face="arial,helvetica,sanserif">
  51. <a name="archive">Archive Tasks</a>
  52. </font>
  53. </th>
  54. <font size="-1" face="arial,helvetica,sanserif">
  55. <th align="right"><a href="#top">[Back to top]</a></th>
  56. </font>
  57. </table>
  58. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  59. <tr valign="top">
  60. <th nowrap>Task Name</th>
  61. <th nowrap>Description</th>
  62. </tr>
  63. <tr valign="top">
  64. <td nowrap><a href="CoreTasks/unpack.html">BUnzip2</a></td>
  65. <td><p>Expands a file packed using GZip or BZip2.</p></td>
  66. </tr>
  67. <tr valign="top">
  68. <td nowrap><a href="CoreTasks/pack.html">BZip2</a></td>
  69. <td><p>Packs a file using the GZip or BZip2 algorithm. This task
  70. does not do any dependency checking; the output file is always
  71. generated</p></td>
  72. </tr>
  73. <tr valign="top">
  74. <td nowrap><a href="OptionalTasks/cab.html">Cab</a></td>
  75. <td><p>Creates Microsoft CAB archive files. It is invoked
  76. similar to the <a href="CoreTasks/jar.html">Jar</a> or
  77. <a href="CoreTasks/zip.html">Zip</a> tasks. This task will work on
  78. Windows using the external <i>cabarc</i> tool (provided by Microsoft),
  79. which must be located in your executable path.</p></td>
  80. </tr>
  81. <tr valign="top">
  82. <td nowrap><a href="CoreTasks/ear.html">Ear</a></td>
  83. <td><p>An extension of the <a href="CoreTasks/jar.html">Jar</a> task with
  84. special treatment for files that should end up in an
  85. Enterprise Application archive.</p></td>
  86. </tr>
  87. <tr valign="top">
  88. <td nowrap><a href="CoreTasks/gunzip.html">GUnzip</a></td>
  89. <td><p>Expands a GZip file.</p></td>
  90. </tr>
  91. <tr valign="top">
  92. <td nowrap><a href="CoreTasks/gzip.html">GZip</a></td>
  93. <td><p>GZips a set of files.</p></td>
  94. </tr>
  95. <tr valign="top">
  96. <td nowrap><a href="CoreTasks/jar.html">Jar</a></td>
  97. <td><p>Jars a set of files.</p></td>
  98. </tr>
  99. <tr valign="top">
  100. <td nowrap><a href="OptionalTasks/jlink.html">Jlink</a></td>
  101. <td><p><i>Deprecated.</i> Use the <code>zipfileset</code>
  102. and <code>zipgroupfileset</code> attributes of the
  103. <a href="CoreTasks/jar.html">Jar</a> or
  104. <a href="CoreTasks/zip.html">Zip</a> tasks instead.</p></td>
  105. </tr>
  106. <tr valign="top">
  107. <td nowrap><a href="CoreTasks/manifest.html">Manifest</a></td>
  108. <td><p>Creates a manifest file.</p></td>
  109. </tr>
  110. <tr valign="top">
  111. <td nowrap><a href="OptionalTasks/rpm.html">Rpm</a></td>
  112. <td><p>Invokes the <i>rpm</i> executable to build a Linux installation
  113. file. This task currently only works on Linux or other Unix platforms
  114. with RPM support.</p></td>
  115. </tr>
  116. <tr valign="top">
  117. <td nowrap><a href="CoreTasks/signjar.html">SignJar</a></td>
  118. <td><p>Signs a jar or zip file with the <i>javasign</i>
  119. command-line tool.</p></td>
  120. </tr>
  121. <tr valign="top">
  122. <td nowrap><a href="CoreTasks/tar.html">Tar</a></td>
  123. <td><p>Creates a tar archive.</p></td>
  124. </tr>
  125. <tr valign="top">
  126. <td nowrap><a href="CoreTasks/unzip.html">Unjar</a></td>
  127. <td><p>Unzips a jarfile.</p></td>
  128. </tr>
  129. <tr valign="top">
  130. <td nowrap><a href="CoreTasks/untar.html">Untar</a></td>
  131. <td><p>Untars a tarfile.</p></td>
  132. </tr>
  133. <tr valign="top">
  134. <td nowrap><a href="CoreTasks/unzip.html">Unwar</a></td>
  135. <td><p>Unzips a warfile.</p></td>
  136. </tr>
  137. <tr valign="top">
  138. <td nowrap><a href="CoreTasks/unzip.html">Unzip</a></td>
  139. <td><p>Unzips a zipfile.</p></td>
  140. </tr>
  141. <tr valign="top">
  142. <td nowrap><a href="CoreTasks/war.html">War</a></td>
  143. <td><p>An extension of the <a href="CoreTasks/jar.html">Jar</a> task
  144. with special treatment for files that should end up in the
  145. <code>WEB-INF/lib</code>, <code>WEB-INF/classes</code>, or
  146. <code>WEB-INF</code> directories of the Web Application Archive.</p></td>
  147. </tr>
  148. <tr valign="top">
  149. <td nowrap><a href="CoreTasks/zip.html">Zip</a></td>
  150. <td><p>Creates a zipfile.</p></td>
  151. </tr>
  152. </table>
  153. <p></p>
  154. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  155. <th align="left">
  156. <font size="+0" face="arial,helvetica,sanserif">
  157. <a name="audit">Audit/Coverage Tasks</a>
  158. </font></th>
  159. <font size="-1" face="arial,helvetica,sanserif">
  160. <th align="right"><a href="#top">[Back to top]</a></th>
  161. </font>
  162. </table>
  163. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  164. <tr valign="top">
  165. <th nowrap>Task Name</th>
  166. <th>Description</th>
  167. </tr>
  168. <tr valign="top">
  169. <td nowrap><a href="OptionalTasks/jdepend.html">JDepend</a></td>
  170. <td><p>Invokes the <a href="http://www.clarkware.com/software/JDepend.html">
  171. JDepend</a> parser. This parser &quot;traverses a set of Java source-file
  172. directories and generates design-quality metrics for each Java
  173. package&quot;.</p></td>
  174. </tr>
  175. </table>
  176. <p></p>
  177. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  178. <th align="left">
  179. <font size="+0" face="arial,helvetica,sanserif">
  180. <a name="compile">Compile Tasks</a>
  181. </font></th>
  182. <font size="-1" face="arial,helvetica,sanserif">
  183. <th align="right"><a href="#top">[Back to top]</a></th>
  184. </font>
  185. </table>
  186. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  187. <tr valign="top">
  188. <th nowrap>Task Name</th>
  189. <th>Description</th>
  190. </tr>
  191. <tr valign="top">
  192. <td nowrap><a href="OptionalTasks/depend.html">Depend</a></td>
  193. <td><p>Determines which classfiles are out-of-date with respect to their
  194. source, removing the classfiles of any other classes that depend on the
  195. out-of-date classes, forcing the re-compile of the removed classfiles.
  196. Typically used in conjunction with the
  197. <a href="CoreTasks/javac.html">Javac</a> task.</p></td>
  198. <tr valign="top">
  199. <td nowrap><a href="CoreTasks/javac.html">Javac</a></td>
  200. <td><p>Compiles the specified source file(s) within the running
  201. (Ant) VM, or in another VM if the <code>fork</code> attribute is
  202. specified.</p></td>
  203. </tr>
  204. <tr valign="top">
  205. <td nowrap><a href="CoreTasks/apt.html">Apt</a></td>
  206. <td><p>Runs the annotation processor tool (apt), and then optionally compiles
  207. the original code, and any generated source code.</p></td>
  208. </tr>
  209. <tr valign="top">
  210. <td nowrap><a href="OptionalTasks/jspc.html">JspC</a></td>
  211. <td><p>Runs the JSP compiler. It can be used to precompile JSP pages
  212. for fast initial invocation of JSP pages, deployment on a server without
  213. the full JDK installed, or simply to syntax-check the pages without
  214. deploying them. The <a href="CoreTasks/javac.html">Javac</a> task
  215. can be used to compile the generated Java source.
  216. (For Weblogic JSP compiles,
  217. see the <a href="OptionalTasks/wljspc.html">Wljspc</a> task.)</p></td>
  218. </tr>
  219. <tr valign="top">
  220. <td nowrap><a href="OptionalTasks/netrexxc.html">NetRexxC</a></td>
  221. <td><p>Compiles a
  222. <a href="http://www2.hursley.ibm.com/netrexx" target="_top">NetRexx</a>
  223. source tree within the running (Ant) VM.</p></td>
  224. </tr>
  225. <tr valign="top">
  226. <td nowrap><a href="CoreTasks/rmic.html">Rmic</a></td>
  227. <td><p>Runs the <i>rmic</i> compiler on the specified file(s).</p></td>
  228. </tr>
  229. <tr valign="top">
  230. <td nowrap><a href="OptionalTasks/wljspc.html">Wljspc</a></td>
  231. <td><p>Compiles JSP pages using Weblogic's JSP compiler,
  232. <i>weblogic.jspc</i>. (For non-Weblogic JSP compiles, see the
  233. <a href="OptionalTasks/jspc.html">JspC</a> task.</p></td>
  234. </tr>
  235. </table>
  236. <p></p>
  237. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  238. <th align="left">
  239. <font size="+0" face="arial,helvetica,sanserif">
  240. <a name="deploy">Deployment Tasks</a>
  241. </font></th>
  242. <font size="-1" face="arial,helvetica,sanserif">
  243. <th align="right"><a href="#top">[Back to top]</a></th>
  244. </font>
  245. </table>
  246. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  247. <tr valign="top">
  248. <th nowrap>Task Name</th>
  249. <th>Description</th>
  250. </tr>
  251. <tr valign="top">
  252. <td nowrap><a href="OptionalTasks/serverdeploy.html">ServerDeploy</a></td>
  253. <td><p>Task to run a &quot;hot&quot; deployment tool for vendor-specific
  254. J2EE server.
  255. </p></td>
  256. </tr>
  257. </table>
  258. <p></p>
  259. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  260. <th align="left">
  261. <font size="+0" face="arial,helvetica,sanserif">
  262. <a name="doc">Documentation Tasks</a>
  263. </font></th>
  264. <font size="-1" face="arial,helvetica,sanserif">
  265. <th align="right"><a href="#top">[Back to top]</a></th>
  266. </font>
  267. </table>
  268. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  269. <tr valign="top">
  270. <th nowrap>Task Name</th>
  271. <th>Description</th>
  272. </tr>
  273. <tr valign="top">
  274. <td nowrap><a href="CoreTasks/javadoc.html">Javadoc/<i>Javadoc2</i></a></td>
  275. <td><p>Generates code documentation using the <i>javadoc</i> tool.
  276. The Javadoc2 task is deprecated; use the Javadoc task instead.</p></td>
  277. </tr>
  278. <tr valign="top">
  279. <td nowrap><a href="OptionalTasks/stylebook.html">Stylebook</a></td>
  280. <td><p>Executes the Apache Stylebook documentation generator.
  281. Unlike the command-line version of this tool, all three arguments
  282. are required to run the Stylebook task.</p></td>
  283. </tr>
  284. </table>
  285. <p></p>
  286. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  287. <th align="left">
  288. <font size="+0" face="arial,helvetica,sanserif">
  289. <a name="ejb">EJB Tasks</a>
  290. </font></th>
  291. <font size="-1" face="arial,helvetica,sanserif">
  292. <th align="right"><a href="#top">[Back to top]</a></th>
  293. </font>
  294. </table>
  295. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  296. <tr valign="top">
  297. <th nowrap>Task Name</th>
  298. <th>Description</th>
  299. </tr>
  300. <tr valign="top">
  301. <td nowrap><a href="OptionalTasks/ejb.html">EJB Tasks</a></td>
  302. <td><p>(See the documentation describing the EJB tasks.)</p></td>
  303. </tr>
  304. </table>
  305. <p></p>
  306. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  307. <th align="left">
  308. <font size="+0" face="arial,helvetica,sanserif">
  309. <a name="exec">Execution Tasks</a>
  310. </font></th>
  311. <font size="-1" face="arial,helvetica,sanserif">
  312. <th align="right"><a href="#top">[Back to top]</a></th>
  313. </font>
  314. </table>
  315. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  316. <tr valign="top">
  317. <th nowrap>Task Name</th>
  318. <th>Description</th>
  319. </tr>
  320. <tr valign="top">
  321. <td nowrap><a href="CoreTasks/ant.html">Ant</a></td>
  322. <td><p>Runs Ant on a supplied buildfile, optionally
  323. passing properties (with possibly new values).
  324. This task can be used to build sub-projects.</p></td>
  325. </tr>
  326. <tr valign="top">
  327. <td nowrap><a href="CoreTasks/antcall.html">AntCall</a></td>
  328. <td><p>Runs another target within the same buildfile, optionally
  329. passing properties (with possibly new values).</p></td>
  330. </tr>
  331. <tr valign="top">
  332. <td nowrap><a href="CoreTasks/apply.html">Apply/<i>ExecOn</i></a></td>
  333. <td><p>Executes a system command. When the <code>os</code> attribute is
  334. specified, the command is only executed when Ant is run on one
  335. of the specified operating systems.</p></td>
  336. </tr>
  337. <tr valign="top">
  338. <td nowrap><a href="CoreTasks/dependset.html">Dependset</a></td>
  339. <td><p>This task compares a set of source files with a set of target
  340. files. If any of the source files is newer than any of
  341. the target files, all the target files are removed. </p></td>
  342. </tr>
  343. <tr valign="top">
  344. <td nowrap><a href="CoreTasks/exec.html">Exec</a></td>
  345. <td><p>Executes a system command. When the <code>os</code> attribute
  346. is specified, the command is only executed when Ant is run on one of
  347. the specified operating systems.</p></td>
  348. </tr>
  349. <tr valign="top">
  350. <td nowrap><a href="CoreTasks/java.html">Java</a></td>
  351. <td><p>Executes a Java class within the running (Ant) VM, or in
  352. another VM if the <code>fork</code> attribute is specified.</p></td>
  353. </tr>
  354. <tr valign="top">
  355. <td nowrap><a href="CoreTasks/parallel.html">Parallel</a></td>
  356. <td><p>A container task that can contain other Ant tasks.
  357. Each nested task specified within the <code>&lt;parallel&gt;</code>
  358. tag will be executed in its own thread.</p></td>
  359. </tr>
  360. <tr valign="top">
  361. <td nowrap><a href="CoreTasks/sequential.html">Sequential</a></td>
  362. <td><p>A container task that can contain other Ant tasks.
  363. The nested tasks are simply executed in sequence. Its primary use is
  364. to support the sequential execution of a subset of tasks within
  365. the <code>&lt;parallel&gt;</code> tag.</p></td>
  366. </tr>
  367. <tr valign="top">
  368. <td nowrap><a href="CoreTasks/sleep.html">Sleep</a></td>
  369. <td><p> A task for suspending execution for a specified period of time.
  370. Useful when a build or deployment process requires an interval between
  371. tasks.</p></td>
  372. </tr>
  373. <tr valign="top">
  374. <td nowrap><a href="CoreTasks/subant.html">Subant</a></td>
  375. <td><p> Calls a given target for all defined sub-builds. This is an extension of ant for bulk project execution.</p></td>
  376. </tr>
  377. <tr valign="top">
  378. <td nowrap><a href="CoreTasks/waitfor.html">Waitfor</a></td>
  379. <td><p>Blocks execution until a set of specified conditions become true.
  380. This task is intended to be used with the
  381. <a href="CoreTasks/parallel.html">Parallel</a> task to synchronize
  382. a set of processes.</p></td>
  383. </tr>
  384. </table>
  385. <p></p>
  386. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  387. <th align="left">
  388. <font size="+0" face="arial,helvetica,sanserif">
  389. <a name="file">File Tasks</a>
  390. </font></th>
  391. <font size="-1" face="arial,helvetica,sanserif">
  392. <th align="right"><a href="#top">[Back to top]</a></th>
  393. </font>
  394. </table>
  395. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  396. <tr valign="top">
  397. <th nowrap>Task Name</th>
  398. <th>Description</th>
  399. </tr>
  400. <tr valign="top">
  401. <td nowrap><a href="OptionalTasks/attrib.html">Attrib</a></td>
  402. <td><p>Changes the permissions and/or attributes of a file or all
  403. files inside the specified directories. Currently, it has effect
  404. only under Windows.</p></td>
  405. </tr>
  406. <tr valign="top">
  407. <td nowrap><a href="CoreTasks/checksum.html">Checksum</a></td>
  408. <td><p>Generates a checksum for a file or set of files. This task can
  409. also be used to perform checksum verifications.</p></td>
  410. </tr>
  411. <tr valign="top">
  412. <td nowrap><a href="OptionalTasks/chgrp.html">Chgrp</a></td>
  413. <td><p>Changes the group ownership of a file or all files inside
  414. the specified directories. Currently, it has effect only under
  415. Unix.</p></td>
  416. </tr>
  417. <tr valign="top">
  418. <td nowrap><a href="CoreTasks/chmod.html">Chmod</a></td>
  419. <td><p>Changes the permissions of a file or all files inside the
  420. specified directories. Currently, it has effect only under Unix.
  421. The permissions are also UNIX style, like the arguments for the
  422. <i>chmod</i> command.</p></td>
  423. </tr>
  424. <tr valign="top">
  425. <td nowrap><a href="OptionalTasks/chown.html">Chown</a></td>
  426. <td><p>Changes the owner of a file or all files inside the
  427. specified directories. Currently, it has effect only under
  428. Unix.</p></td>
  429. </tr>
  430. <tr valign="top">
  431. <td nowrap><a href="CoreTasks/concat.html">Concat</a></td>
  432. <td><p>Concatenates multiple files into a single one or to Ant's
  433. logging system.</p></td>
  434. </tr>
  435. <tr valign="top">
  436. <td nowrap><a href="CoreTasks/copy.html">Copy</a></td>
  437. <td><p>Copies a file or Fileset to a new file or directory.</p></td>
  438. </tr>
  439. <tr valign="top">
  440. <td nowrap><a href="CoreTasks/copydir.html"><i>Copydir</i></a></td>
  441. <td><p><i>Deprecated.</i> Use the
  442. <a href="CoreTasks/copy.html">Copy</a> task instead.</p></td>
  443. </tr>
  444. <tr valign="top">
  445. <td nowrap><a href="CoreTasks/copyfile.html"><i>Copyfile</i></a></td>
  446. <td><p><i>Deprecated.</i> Use the
  447. <a href="CoreTasks/copy.html">Copy</a> task instead.</p></td>
  448. </tr>
  449. <tr valign="top">
  450. <td nowrap><a href="CoreTasks/delete.html">Delete</a></td>
  451. <td><p>Deletes either a single file, all files and sub-directories
  452. in a specified directory, or a set of files specified by one or more
  453. <a href="CoreTypes/fileset.html">FileSet</a>s.</p></td>
  454. </tr>
  455. <tr valign="top">
  456. <td nowrap><a href="CoreTasks/deltree.html"><i>Deltree</i></a></td>
  457. <td><p><i>Deprecated.</i> Use the
  458. <a href="CoreTasks/delete.html">Delete</a> task instead.</p></td>
  459. </tr>
  460. <tr valign="top">
  461. <td nowrap><a href="CoreTasks/filter.html">Filter</a></td>
  462. <td><p>Sets a token filter for this project, or reads multiple token
  463. filters from a specified file and sets these as filters. Token filters
  464. are used by all tasks that perform file-copying operations.</p></td>
  465. </tr>
  466. <tr valign="top">
  467. <td nowrap><a href="CoreTasks/fixcrlf.html">FixCRLF</a></td>
  468. <td><p>Modifies a file to add or remove tabs, carriage returns, linefeeds,
  469. and EOF characters.</p></td>
  470. </tr>
  471. <tr valign="top">
  472. <td nowrap><a href="CoreTasks/get.html">Get</a></td>
  473. <td><p>Gets a file from a URL.</p></td>
  474. </tr>
  475. <tr valign="top">
  476. <td nowrap><a href="CoreTasks/mkdir.html">Mkdir</a></td>
  477. <td><p>Creates a directory. Non-existent parent directories are created,
  478. when necessary.</p></td>
  479. </tr>
  480. <tr valign="top">
  481. <td nowrap><a href="CoreTasks/move.html">Move</a></td>
  482. <td><p>Moves a file to a new file or directory, or a set(s) of file(s) to
  483. a new directory.</p></td>
  484. </tr>
  485. <tr valign="top">
  486. <td nowrap><a href="CoreTasks/patch.html">Patch</a></td>
  487. <td><p>Applies a &quot;diff&quot; file to originals.</p></td>
  488. </tr>
  489. <tr valign="top">
  490. <td nowrap><a href="CoreTasks/rename.html"><i>Rename</i></a></td>
  491. <td><p><i>Deprecated.</i> Use the <a href="CoreTasks/move.html">Move</a>
  492. task instead.</p></td>
  493. </tr>
  494. <tr valign="top">
  495. <td nowrap><a href="OptionalTasks/renameextensions.html">
  496. <i>RenameExtensions</i></a></td>
  497. <td><p><i>Deprecated</i>. Use the <a href="CoreTasks/move.html">Move</a>
  498. task with a <a href="CoreTypes/mapper.html#glob-mapper">glob mapper</a>
  499. instead.</p></td>
  500. </tr>
  501. <tr valign="top">
  502. <td nowrap><a href="CoreTasks/replace.html">Replace</a></td>
  503. <td><p>Replace is a directory-based task for replacing the occurrence
  504. of a given string with another string in selected file.</p></td>
  505. </tr>
  506. <tr valign="top">
  507. <td nowrap><a href="OptionalTasks/replaceregexp.html">
  508. ReplaceRegExp</a></td>
  509. <td><p>Directory-based task for replacing the occurrence of a given
  510. regular expression with a substitution pattern in a file or set of
  511. files.</p></td>
  512. </tr>
  513. <tr valign="top">
  514. <td nowrap><a href="CoreTasks/sync.html">Sync</a></td>
  515. <td><p>Synchronize two directory trees.</p></td>
  516. </tr>
  517. <tr valign="top">
  518. <td nowrap><a href="CoreTasks/tempfile.html">Tempfile</a></td>
  519. <td><p>Generates a name for a new temporary file and sets the specified
  520. property to that name.</p></td>
  521. </tr>
  522. <tr valign="top">
  523. <td nowrap><a href="CoreTasks/touch.html">Touch</a></td>
  524. <td><p>Changes the modification time of a file and possibly creates it at
  525. the same time.</p></td>
  526. </tr>
  527. </table>
  528. <p></p>
  529. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  530. <th align="left">
  531. <font size="+0" face="arial,helvetica,sanserif">
  532. <a name="extensions">Java2 Extensions Tasks</a>
  533. </font></th>
  534. <font size="-1" face="arial,helvetica,sanserif">
  535. <th align="right"><a href="#top">[Back to top]</a></th>
  536. </font>
  537. </table>
  538. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  539. <tr valign="top">
  540. <th nowrap>Task Name</th>
  541. <th>Description</th>
  542. </tr>
  543. <tr valign="top">
  544. <td nowrap>
  545. <a href="OptionalTasks/jarlib-available.html">Jarlib-available</a></td>
  546. <td><p>Check whether an extension is present in a FileSet or an
  547. ExtensionSet. If the extension is present, the specified property is
  548. set.</p>
  549. </td>
  550. </tr>
  551. <tr valign="top">
  552. <td nowrap>
  553. <a href="OptionalTasks/jarlib-display.html">Jarlib-display</a></td>
  554. <td><p>Display the &quot;Optional Package&quot; and
  555. &quot;Package Specification&quot; information contained within the
  556. specified jars.</p>
  557. </td>
  558. </tr>
  559. <tr valign="top">
  560. <td nowrap>
  561. <a href="OptionalTasks/jarlib-manifest.html">Jarlib-manifest</a></td>
  562. <td><p>Task to generate a manifest that declares all the dependencies
  563. in manifest. The dependencies are determined by looking in the
  564. specified path and searching for Extension/&quot;Optional Package&quot;
  565. specifications in the manifests of the jars.</p>
  566. </td>
  567. </tr>
  568. <tr valign="top">
  569. <td nowrap>
  570. <a href="OptionalTasks/jarlib-resolve.html">Jarlib-resolve</a></td>
  571. <td><p>Try to locate a jar to satisfy an extension, and place the
  572. location of the jar into the specified property.</p>
  573. </td>
  574. </tr>
  575. </table>
  576. <p></p>
  577. <p></p>
  578. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  579. <th align="left">
  580. <font size="+0" face="arial,helvetica,sanserif">
  581. <a name="log">Logging Tasks</a>
  582. </font></th>
  583. <font size="-1" face="arial,helvetica,sanserif">
  584. <th align="right"><a href="#top">[Back to top]</a></th>
  585. </font>
  586. </table>
  587. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  588. <tr valign="top">
  589. <th nowrap>Task Name</th>
  590. <th>Description</th>
  591. </tr>
  592. <tr valign="top">
  593. <td nowrap><a href="CoreTasks/recorder.html">Record</a></td>
  594. <td><p>Runs a listener that records the logging output of the
  595. build-process events to a file. Several recorders can exist
  596. at the same time. Each recorder is associated with a file.</p></td>
  597. </tr>
  598. </table>
  599. <p></p>
  600. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  601. <th align="left">
  602. <font size="+0" face="arial,helvetica,sanserif">
  603. <a name="mail">Mail Tasks</a>
  604. </font></th>
  605. <font size="-1" face="arial,helvetica,sanserif">
  606. <th align="right"><a href="#top">[Back to top]</a></th>
  607. </font>
  608. </table>
  609. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  610. <tr valign="top">
  611. <th nowrap>Task Name</th>
  612. <th>Description</th>
  613. </tr>
  614. <tr valign="top">
  615. <td nowrap><a href="CoreTasks/mail.html">Mail</a></td>
  616. <td><p>A task to send SMTP email.</p></td>
  617. </tr>
  618. <tr valign="top">
  619. <td nowrap><a href="OptionalTasks/mimemail.html">MimeMail</a></td>
  620. <td><p><i>Deprecated</i>. Use the <a href="CoreTasks/mail.html">Mail</a>
  621. task instead.</p></td>
  622. </tr>
  623. </table>
  624. <p></p>
  625. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  626. <th align="left">
  627. <font size="+0" face="arial,helvetica,sanserif">
  628. <a name="misc">Miscellaneous Tasks</a>
  629. </font></th>
  630. <font size="-1" face="arial,helvetica,sanserif">
  631. <th align="right"><a href="#top">[Back to top]</a></th>
  632. </font>
  633. </table>
  634. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  635. <tr valign="top">
  636. <th nowrap>Task Name</th>
  637. <th>Description</th>
  638. </tr>
  639. <tr valign="top">
  640. <td nowrap><a href="CoreTasks/defaultexcludes.html">Defaultexcludes</a></td>
  641. <td><p>Modify the list of default exclude patterns from within
  642. your build file.</p></td>
  643. </tr>
  644. <tr valign="top">
  645. <td nowrap><a href="CoreTasks/echo.html">Echo</a></td>
  646. <td><p>Echoes text to <code>System.out</code> or to a file.</p></td>
  647. </tr>
  648. <tr valign="top">
  649. <td nowrap><a href="CoreTasks/fail.html">Fail</a></td>
  650. <td><p>Exits the current build by throwing a BuildException,
  651. optionally printing additional information.</p></td>
  652. </tr>
  653. <tr valign="top">
  654. <td nowrap><a href="CoreTasks/genkey.html">GenKey</a></td>
  655. <td><p>Generates a key in keystore.</p></td>
  656. </tr>
  657. <tr valign="top">
  658. <td nowrap><a href="CoreTasks/input.html">Input</a></td>
  659. <td><p>Allows user interaction during the build process by displaying a
  660. message and reading a line of input from the console.</p></td>
  661. </tr>
  662. <tr valign="top">
  663. <td nowrap><a href="OptionalTasks/script.html">Script</a></td>
  664. <td><p>Executes a script in a
  665. <a href="http://jakarta.apache.org/bsf/"
  666. target="_top">Apache BSF</a>-supported language.</p></td>
  667. </tr>
  668. <tr valign="top">
  669. <td nowrap><a href="OptionalTasks/sound.html">Sound</a></td>
  670. <td><p>Plays a sound file at the end of the build, according to whether
  671. the build failed or succeeded.</p></td>
  672. </tr>
  673. <tr valign="top">
  674. <td nowrap><a href="OptionalTasks/splash.html">Splash</a></td>
  675. <td><p>Displays a splash screen.</p></td>
  676. </tr>
  677. <tr valign="top">
  678. <td nowrap><a href="CoreTasks/sql.html">Sql</a></td>
  679. <td><p>Executes a series of SQL statements via JDBC to a database.
  680. Statements can either be read in from a text file using the
  681. <code>src</code> attribute, or from between the enclosing SQL
  682. tags.</p></td>
  683. </tr>
  684. <tr valign="top">
  685. <td nowrap><a href="CoreTasks/taskdef.html">Taskdef</a></td>
  686. <td><p>Adds a task definition to the current project, such that this
  687. new task can be used in the current project.</p></td>
  688. </tr>
  689. <tr valign="top">
  690. <td nowrap><a href="CoreTasks/tstamp.html">TStamp</a></td>
  691. <td><p>Sets the <code>DSTAMP</code>, <code>TSTAMP</code>, and
  692. <code>TODAY</code> properties in the current project, based on
  693. the current date and time.</p></td>
  694. </tr>
  695. <tr valign="top">
  696. <td nowrap><a href="CoreTasks/typedef.html">Typedef</a></td>
  697. <td><p>Adds a data-type definition to the current project, such that this
  698. new type can be used in the current project.</p></td>
  699. </tr>
  700. <tr valign="top">
  701. <td nowrap><a href="OptionalTasks/xmlvalidate.html">XmlValidate</a></td>
  702. <td><p>Checks that XML files are valid (or only well-formed). This task
  703. uses the XML parser that is currently used by Ant by default, but any SAX1/2
  704. parser can be specified, if needed.</p></td>
  705. </tr>
  706. </table>
  707. <p></p>
  708. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  709. <th align="left">
  710. <font size="+0" face="arial,helvetica,sanserif">
  711. <a name="net">.NET Tasks</a>
  712. </font></th>
  713. <font size="-1" face="arial,helvetica,sanserif">
  714. <th align="right"><a href="#top">[Back to top]</a></th>
  715. </font>
  716. </table>
  717. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  718. <tr valign="top">
  719. <th nowrap>Task Name</th>
  720. <th>Description</th>
  721. </tr>
  722. <tr valign="top">
  723. <td nowrap><a href="OptionalTasks/dotnet.html">.NET Tasks</a></td>
  724. <td><p>(See the documentation describing the .NET tasks.)</p></td>
  725. </tr>
  726. </table>
  727. <p></p>
  728. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  729. <th align="left">
  730. <font size="+0" face="arial,helvetica,sanserif">
  731. <a name="preproc">Pre-process Tasks</a>
  732. </font></th>
  733. <font size="-1" face="arial,helvetica,sanserif">
  734. <th align="right"><a href="#top">[Back to top]</a></th>
  735. </font>
  736. </table>
  737. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  738. <tr valign="top">
  739. <th nowrap>Task Name</th>
  740. <th>Description</th>
  741. </tr>
  742. <tr valign="top">
  743. <td nowrap><a href="OptionalTasks/antlr.html">ANTLR</a></td>
  744. <td><p>Invokes the <a HREF="http://www.antlr.org/" target="_top">ANTLR</a>
  745. Translator generator on a grammar file.</p></td>
  746. </tr>
  747. <tr valign="top">
  748. <td nowrap><a href="CoreTasks/antstructure.html">AntStructure</a></td>
  749. <td><p>Generates a DTD for Ant buildfiles that contains information
  750. about all tasks currently known to Ant.</p></td>
  751. </tr>
  752. <tr valign="top">
  753. <td nowrap><a href="CoreTasks/import.html">Import</a></td>
  754. <td><p>Import another build file and potentially override targets
  755. in it with targets of your own.</p></td>
  756. </tr>
  757. <tr valign="top">
  758. <td nowrap><a href="OptionalTasks/javacc.html">JavaCC</a></td>
  759. <td><p>Invokes the
  760. <a HREF="http://javacc.dev.java.net/" target="_top">
  761. JavaCC</a> compiler-compiler on a grammar file.</p></td>
  762. </tr>
  763. <tr valign="top">
  764. <td nowrap><a href="OptionalTasks/javah.html">Javah</a></td>
  765. <td><p>Generates JNI headers from a Java class.</p></td>
  766. </tr>
  767. <tr valign="top">
  768. <td nowrap><a href="OptionalTasks/jjdoc.html">JJDoc</a></td>
  769. <td><p>Invokes the <a href="http://javacc.dev.java.net/">
  770. JJDoc</a> documentation generator for the JavaCC compiler-compiler.
  771. JJDoc takes a JavaCC parser specification and produces documentation
  772. for the BNF grammar. It can operate in three modes, determined by
  773. command line options. This task only invokes JJDoc if the grammar file
  774. is newer than the generated BNF grammar documentation.</p></td>
  775. </tr>
  776. <tr valign="top">
  777. <td nowrap><a href="OptionalTasks/jjtree.html">JJTree</a></td>
  778. <td><p>Invokes the <a href="http://javacc.dev.java.net/">
  779. JJTree</a> preprocessor for the JavaCC compiler-compiler. It inserts
  780. parse-tree building actions at various places in the JavaCC source that
  781. it generates. The output of JJTree is run through JavaCC to create the
  782. parser. This task only invokes JJTree if the grammar file is newer than
  783. the generated JavaCC file.</p></td>
  784. </tr>
  785. <tr valign="top">
  786. <td nowrap><a href="CoreTasks/macrodef.html">Macrodef</a></td>
  787. <td><p>Define a new task as a macro built-up upon other tasks.</p></td>
  788. </tr>
  789. <tr valign="top">
  790. <td nowrap><a href="OptionalTasks/native2ascii.html">
  791. Native2Ascii</a></td>
  792. <td><p>Converts files from native encodings to ASCII with escaped Unicode.
  793. A common usage is to convert source files maintained in a native
  794. operating system encoding to ASCII, prior to compilation.</p></td>
  795. </tr>
  796. <tr valign="top">
  797. <td nowrap><a href="CoreTasks/presetdef.html">Presetdef</a></td>
  798. <td><p>Define a new task by instrumenting an existing task with
  799. default values for attributes or child elements.</p>
  800. </tr>
  801. <tr valign="top">
  802. <td nowrap><a href="OptionalTasks/translate.html">Translate</a></td>
  803. <td><p>Identifies keys in files, delimited by special tokens, and
  804. translates them with values read from resource bundles.</p></td>
  805. </tr>
  806. <tr valign="top">
  807. <td nowrap><a href="CoreTasks/style.html">XSLT</a></td>
  808. <td><p>Processes a set of documents via XSLT.</p></td>
  809. </tr>
  810. </table>
  811. <p></p>
  812. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  813. <th align="left">
  814. <font size="+0" face="arial,helvetica,sanserif">
  815. <a name="prop">Property Tasks</a>
  816. </font></th>
  817. <font size="-1" face="arial,helvetica,sanserif">
  818. <th align="right"><a href="#top">[Back to top]</a></th>
  819. </font>
  820. </table>
  821. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  822. <tr valign="top">
  823. <th nowrap>Task Name</th>
  824. <th>Description</th>
  825. </tr>
  826. <tr valign="top">
  827. <td nowrap><a href="CoreTasks/available.html">Available</a></td>
  828. <td><p>Sets a property if a specified file, directory, class in the
  829. classpath, or JVM system resource is available at runtime.</p></td>
  830. </tr>
  831. <tr valign="top">
  832. <td nowrap><a href="CoreTasks/basename.html">Basename</a></td>
  833. <td><p>Sets a property to the last element of a specified path.
  834. </tr>
  835. <tr valign="top">
  836. <td nowrap><a href="CoreTasks/buildnumber.html">BuildNumber</a></td>
  837. <td><p>Task that can be used to track build numbers.
  838. </tr>
  839. <tr valign="top">
  840. <td nowrap><a href="CoreTasks/condition.html">Condition</a></td>
  841. <td><p>Sets a property if a certain condition holds true; this is a
  842. generalization of <a href="CoreTasks/available.html">Available</a> and
  843. <a href="CoreTasks/uptodate.html">Uptodate</a>.</p></td>
  844. </tr>
  845. <tr valign="top">
  846. <td nowrap><a href="CoreTasks/dirname.html">Dirname</a></td>
  847. <td><p>Sets a property to the value of the specified file up to,
  848. but not including, the last path element.
  849. </tr>
  850. <tr valign="top">
  851. <td nowrap>
  852. <a href="OptionalTasks/echoproperties.html">Echoproperties</a><br>
  853. </td>
  854. <td><p>Lists the current properties.</p></td>
  855. </tr>
  856. <tr valign="top">
  857. <td nowrap><a href="CoreTasks/loadfile.html">LoadFile</a></td>
  858. <td><p>Loads a file into a property.</p></td>
  859. </tr>
  860. <tr valign="top">
  861. <td nowrap><a href="CoreTasks/loadproperties.html">LoadProperties</a></td>
  862. <td><p>Load a file's contents as Ant properties. This task is
  863. equivalent to using <code>&lt;property file=&quot;...&quot;/&gt;</code>
  864. except that it supports nested <code>&lt;filterchain&gt;</code> elements,
  865. and it cannot be specified outside a target.</p></td>
  866. </tr>
  867. <tr valign="top">
  868. <td nowrap><a href="CoreTasks/makeurl.html">MakeURL</a></td>
  869. <td><p>Creates a URL (list) from a file/fileset or path</p></td>
  870. </tr>
  871. <tr valign="top">
  872. <td nowrap><a href="CoreTasks/pathconvert.html">PathConvert</a></td>
  873. <td><p>Converts a nested path, path reference, filelist reference, or
  874. fileset reference to the form usable on a specified platform and/or
  875. to a list of items separated by the specified separator and stores
  876. the result in the specified property.</p></td>
  877. </tr>
  878. <tr valign="top">
  879. <td nowrap><a href="CoreTasks/property.html">Property</a></td>
  880. <td><p>Sets a property (by name and value), or set of properties
  881. (from a file or resource) in the project.</p></td>
  882. </tr>
  883. <tr valign="top">
  884. <td nowrap><a href="OptionalTasks/propertyfile.html">
  885. PropertyFile</a></td>
  886. <td><p>Creates or modifies property files. Useful when wanting to make
  887. unattended modifications to configuration files for application
  888. servers and applications. Typically used for things such as
  889. automatically generating a build number and saving it to a build
  890. properties file, or doing date manipulation.<p></td>
  891. </tr>
  892. <tr valign="top">
  893. <td nowrap><a href="CoreTasks/uptodate.html">Uptodate</a></td>
  894. <td><p>Sets a property if a given target file is newer than a set of
  895. source files.</p></td>
  896. </tr>
  897. <tr valign="top">
  898. <td nowrap><a href="CoreTasks/whichresource.html">Whichresource</a></td>
  899. <td><p>Find a class or resource.</p></td>
  900. </tr>
  901. <tr valign="top">
  902. <td nowrap><a href="CoreTasks/xmlproperty.html">XmlProperty</a></td>
  903. <td><p>Loads property values from a well-formed XML file.</p></td>
  904. </tr>
  905. </table>
  906. <p></p>
  907. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  908. <th align="left">
  909. <font size="+0" face="arial,helvetica,sanserif">
  910. <a name="remote">Remote Tasks</a>
  911. </font></th>
  912. <font size="-1" face="arial,helvetica,sanserif">
  913. <th align="right"><a href="#top">[Back to top]</a></th>
  914. </font>
  915. </table>
  916. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  917. <tr valign="top">
  918. <th nowrap>Task Name</th>
  919. <th>Description</th>
  920. </tr>
  921. <tr valign="top">
  922. <td nowrap><a href="OptionalTasks/ftp.html">FTP</a></td>
  923. <td><p>Implements a basic FTP client that can send, receive,
  924. list, and delete files, and create directories.</p></td>
  925. </tr>
  926. <tr valign="top">
  927. <td nowrap><a href="OptionalTasks/rexec.html">Rexec</a></td>
  928. <td><p>Task to automate a remote rexec session.</p></td>
  929. </tr>
  930. <tr valign="top">
  931. <td nowrap><a href="OptionalTasks/scp.html">Scp</a></td>
  932. <td><p>Copy files to or from a remote server using SSH.</p></td>
  933. </tr>
  934. <tr valign="top">
  935. <td nowrap><a href="OptionalTasks/setproxy.html">setproxy</a></td>
  936. <td><p>Sets Java's web proxy properties, so that tasks and code run
  937. in the same JVM can have through-the-firewall access to remote web sites.</p></td>
  938. </tr>
  939. <tr valign="top">
  940. <td nowrap><a href="OptionalTasks/sshexec.html">Sshexec</a></td>
  941. <td><p>Execute a command on a remote server using SSH.</p></td>
  942. </tr>
  943. <tr valign="top">
  944. <td nowrap><a href="OptionalTasks/telnet.html">Telnet</a></td>
  945. <td><p>Task to automate a remote <i>telnet</i> session. This task uses
  946. nested <code>&lt;read&gt;</code> and <code>&lt;write&gt;</code> tags
  947. to indicate strings to wait for and specify text to send.</p></td>
  948. </tr>
  949. </table>
  950. <p></p>
  951. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  952. <th align="left">
  953. <font size="+0" face="arial,helvetica,sanserif">
  954. <a name="scm">SCM Tasks</a>
  955. </font></th>
  956. <font size="-1" face="arial,helvetica,sanserif">
  957. <th align="right"><a href="#top">[Back to top]</a></th>
  958. </font>
  959. </table>
  960. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  961. <tr valign="top">
  962. <th nowrap>Task Name</th>
  963. <th>Description</th>
  964. </tr>
  965. <tr valign="top">
  966. <td nowrap><a href="CoreTasks/cvs.html">Cvs</a></td>
  967. <td><p>Handles packages/modules retrieved from a
  968. <a href="http://www.nongnu.org/cvs/" target="_top">CVS</a>
  969. repository.</p></td>
  970. </tr>
  971. <tr valign="top">
  972. <td nowrap><a href="CoreTasks/changelog.html">CvsChangeLog</a></td>
  973. <td><p>Generates an XML report of the changes recorded in a
  974. <a href="http://www.nongnu.org/cvs/" target="_top">CVS</a>
  975. repository.</p></td>
  976. </tr>
  977. <tr valign="top">
  978. <td nowrap><a href="CoreTasks/cvspass.html">CVSPass</a></td>
  979. <td><p>Adds entries to a .cvspass file. Adding entries to this file
  980. has the same affect as a <i>cvs login</i> command.</p></td>
  981. </tr>
  982. <tr valign="top">
  983. <td nowrap><a href="CoreTasks/cvstagdiff.html">CvsTagDiff</a></td>
  984. <td><p>Generates an XML-formatted report file of the changes between
  985. two tags or dates recorded in a <a href="http://www.nongnu.org/cvs/"
  986. target="_top">CVS</a> repository.</p></td>
  987. </tr>
  988. <tr valign="top">
  989. <td nowrap><a href="OptionalTasks/clearcase.html">ClearCase</a></td>
  990. <td><p>Tasks to perform the ClearCase cleartool <i>checkin</i>, <i>checkout</i>,
  991. <i>uncheckout</i>, <i>update</i>, <i>lock</i>, <i>unlock</i>, <i>mklbtype</i>, <i>rmtype</i>, <i>mklabel</i>, <i>mkattr</i>, <i>mkdir</i>, <i>mkelem</i>, and <i>mkbl</i> commands.</p></td>
  992. </tr>
  993. <tr valign="top">
  994. <td nowrap><a href="OptionalTasks/ccm.html">Continuus/Synergy</a></td>
  995. <td><p>Tasks to perform the Continuus <i>ccmcheckin</i>,
  996. <i>ccmcheckout</i>, <i>ccmcheckintask</i>, <i>ccmreconfigure</i>, and
  997. <i>ccmcreateTask</i> commands.</p></td>
  998. </tr>
  999. <tr valign="top">
  1000. <td nowrap><a href="OptionalTasks/vss.html">
  1001. Microsoft Visual SourceSafe</a></td>
  1002. <td><p>Tasks to perform the Visual SourceSafe <i>vssget</i>,
  1003. <i>vsslabel</i>, <i>vsshistory</i>, <i>vsscheckin</i>,
  1004. <i>vsscheckout</i>, <i>vssadd</i>, <i>vsscp</i>, and <i>vsscreate</i>
  1005. commands.</p></td>
  1006. </tr>
  1007. <tr valign="top">
  1008. <td nowrap><a href="OptionalTasks/perforce.html">Perforce</a></td>
  1009. <td><p>Tasks to perform the Perforce <i>p4sync</i>, <i>p4change</i>,
  1010. <i>p4edit</i>, <i>p4submit</i>, <i>p4have</i>, <i>p4label</i>,
  1011. <i>p4counter</i>, <i>p4reopen</i>, <i>p4revert</i>, and <i>p4add</i>
  1012. commands.</p></td>
  1013. </tr>
  1014. <tr valign="top">
  1015. <td nowrap><a href="OptionalTasks/pvcstask.html">Pvcs</a></td>
  1016. <td><p>Allows the user extract the latest edition of the source code
  1017. from a PVCS repository.</p></td>
  1018. </tr>
  1019. <tr valign="top">
  1020. <td nowrap><a href="OptionalTasks/sos.html">SourceOffSite</a></td>
  1021. <td><p>Tasks to perform the SourceOffSite <i>sosget</i>, <i>soslabel</i>,
  1022. <i>soscheckin</i>, and <i>soscheckout</i> commands.</p></td>
  1023. </tr>
  1024. <tr valign="top">
  1025. <td nowrap><a href="OptionalTasks/starteam.html">StarTeam</a></td>
  1026. <td><p>Tasks to perform the StarTeam <i>stcheckout</i>, <i>stcheckin</i>,
  1027. <i>stlabel</i>, and <i>stlist</i> commands. The
  1028. <a href="OptionalTasks/starteam.html#starteam">Starteam</a> task
  1029. is deprecated; use
  1030. <a href="OptionalTasks/starteam.html#stcheckout">STCheckout</a>
  1031. instead.</p></td>
  1032. </tr>
  1033. </table>
  1034. <p></p>
  1035. <table width="100%" border="0" cellpadding="4" cellspacing="0">
  1036. <th align="left">
  1037. <font size="+0" face="arial,helvetica,sanserif">
  1038. <a name="testing">Testing Tasks</a>
  1039. </font></th>
  1040. <font size="-1" face="arial,helvetica,sanserif">
  1041. <th align="right"><a href="#top">[Back to top]</a></th>
  1042. </font>
  1043. </table>
  1044. <table width="100%" border="1" cellpadding="4" cellspacing="0">
  1045. <tr valign="top">
  1046. <th nowrap>Task Name</th>
  1047. <th>Description</th>
  1048. </tr>
  1049. <tr valign="top">
  1050. <td nowrap><a href="OptionalTasks/junit.html">Junit</a></td>
  1051. <td><p>Runs tests from the <a href="http://www.junit.org">Junit</a>
  1052. testing framework. This task has been tested with JUnit 3.0 up to
  1053. JUnit 3.7; it won't work with versions prior to JUnit 3.0.</p></td>
  1054. </tr>
  1055. <tr valign="top">
  1056. <td nowrap><a href="OptionalTasks/junitreport.html">JunitReport</a></td>
  1057. <td><p>Merges the individual XML files generated by the
  1058. <a href="OptionalTasks/junit.html">Junit</a> task and applies a
  1059. stylesheet on the resulting merged document to provide a browsable
  1060. report of the testcases results.</p></td>
  1061. </tr>
  1062. </table>
  1063. </body>
  1064. </html>