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.

index.html 8.8 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <!-- Content Stylesheet for Site -->
  3. <!-- start the processing -->
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
  7. <meta name="author" value="Conor MacNeill">
  8. <meta name="email" value="conor@cortexebusiness.com.au">
  9. <title>The Jakarta Site - Ant</title>
  10. </head>
  11. <body bgcolor="#ffffff" text="#000000" link="#525D76">
  12. <table border="0" width="100%" cellspacing="0">
  13. <!-- TOP IMAGE -->
  14. <tr>
  15. <td colspan="2">
  16. <a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" align="left" border="0"/></a>
  17. </td>
  18. </tr>
  19. </table>
  20. <table border="0" width="100%" cellspacing="4">
  21. <tr><td colspan="2">
  22. <hr noshade="" size="1"/>
  23. </td></tr>
  24. <tr>
  25. <!-- LEFT SIDE NAVIGATION -->
  26. <td valign="top" nowrap="true">
  27. <p><strong>Ant</strong></p>
  28. <ul>
  29. <li> <a href="./index.html">Front Page</a>
  30. </li>
  31. <li> <a href="./antnews.html">News</a>
  32. </li>
  33. <li> <a href="./manual/">Documentation</a>
  34. </li>
  35. <li> <a href="./external.html">External Resources</a>
  36. </li>
  37. <li> <a href="./faq.html">Ant FAQ</a>
  38. </li>
  39. </ul>
  40. <p><strong>Download</strong></p>
  41. <ul>
  42. <li> <a href="http://jakarta.apache.org/site/binindex.html">Binaries</a>
  43. </li>
  44. <li> <a href="http://jakarta.apache.org/site/sourceindex.html">Source Code</a>
  45. </li>
  46. </ul>
  47. <p><strong>Jakarta</strong></p>
  48. <ul>
  49. <li> <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  50. </li>
  51. <li> <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  52. </li>
  53. <li> <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  54. </li>
  55. <li> <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  56. </li>
  57. </ul>
  58. <p><strong>Get Involved</strong></p>
  59. <ul>
  60. <li> <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  61. </li>
  62. <li> <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  63. </li>
  64. <li> <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  65. </li>
  66. <li> <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  67. </li>
  68. <li> <a href="http://jakarta.apache.org/site/bugs.html">Bug Database</a>
  69. </li>
  70. </ul>
  71. </td>
  72. <td align="left" valign="top">
  73. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  74. <tr><td bgcolor="#525D76">
  75. <font color="#ffffff" face="arial,helvetica,sanserif">
  76. <a name="Ant"><strong>Ant</strong></a>
  77. </font>
  78. </td></tr>
  79. <tr><td>
  80. <blockquote>
  81. <p>
  82. Ant is a Java based build tool. In theory it is kind of like make without
  83. make's wrinkles.
  84. </p>
  85. <p>
  86. Why another build tool when there is already make, gnumake, nmake, jam, and
  87. others? Because all of those tools have limitations that Ant's original author
  88. couldn't live with when developing software across multiple platforms. Make-like
  89. tools are inherently shell based. They evaluate a set of dependencies and then
  90. execute commands not unlike what you would issue on a shell. This means that you
  91. can easily extend these tools by using or writing any program for the OS that
  92. you are working on. However, this also means that you limit yourself to the OS,
  93. or at least the OS type such as Unix, that you are working on.
  94. </p>
  95. <p>
  96. Makefiles are inherently evil as well. Anybody who has worked on them for any
  97. time has run into the dreaded tab problem. "Is my command not executing
  98. because I have a space in front of my tab!!!" said the original author of
  99. Ant way too many times. Tools like Jam took care of this to a great degree, but
  100. still use yet another format to use and remember.
  101. </p>
  102. <p>
  103. Ant is different. Instead of a model where it is extended with shell based
  104. commands, it is extended using Java classes. Instead of writing shell commands,
  105. the configuration files are XML based calling out a target tree where various
  106. tasks get executed. Each task is run by an object which implements a particular
  107. Task interface.
  108. </p>
  109. <p>
  110. Granted, this removes some of the expressive power that is inherent by being
  111. able to construct a shell command such as `find . -name foo -exec rm {}` but it
  112. gives you the ability to be cross platform. To work anywhere and everywhere. And
  113. hey, if you really need to execute a shell command, Ant has an exec rule that
  114. allows different commands to be executed based on the OS that it is executing
  115. on.
  116. </p>
  117. </blockquote>
  118. </td></tr>
  119. </table>
  120. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  121. <tr><td bgcolor="#525D76">
  122. <font color="#ffffff" face="arial,helvetica,sanserif">
  123. <a name="Documentation"><strong>Documentation</strong></a>
  124. </font>
  125. </td></tr>
  126. <tr><td>
  127. <blockquote>
  128. <p>
  129. You can view the documentation for the most recent release
  130. <a href="manual/index.html">online</a>
  131. </p>
  132. <p>
  133. Comprehensive documentation is included in the source and binary distribtions.
  134. </p>
  135. </blockquote>
  136. </td></tr>
  137. </table>
  138. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  139. <tr><td bgcolor="#525D76">
  140. <font color="#ffffff" face="arial,helvetica,sanserif">
  141. <a name="Latest Release"><strong>Latest Release</strong></a>
  142. </font>
  143. </td></tr>
  144. <tr><td>
  145. <blockquote>
  146. <p>
  147. You can download the latest release:
  148. </p>
  149. <ul>
  150. <li><a href="http://jakarta.apache.org/builds/jakarta-ant/release/v1.3/bin/">
  151. Download the binary release</a></li>
  152. <li><a href="http://jakarta.apache.org/builds/jakarta-ant/release/v1.3/src/">
  153. Download the source release</a></li>
  154. <li><a href="http://jakarta.apache.org/builds/jakarta-ant/release/v1.3/rpms/">
  155. Download source and binary RPMs</a></li>
  156. </ul>
  157. </blockquote>
  158. </td></tr>
  159. </table>
  160. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  161. <tr><td bgcolor="#525D76">
  162. <font color="#ffffff" face="arial,helvetica,sanserif">
  163. <a name="Nightly Builds"><strong>Nightly Builds</strong></a>
  164. </font>
  165. </td></tr>
  166. <tr><td>
  167. <blockquote>
  168. <p>
  169. If you wish to use the latest Ant features, you can try downloading a nightly
  170. build from <a href="http://jakarta.apache.org/builds/jakarta-ant/nightly/">here</a>
  171. </p>
  172. </blockquote>
  173. </td></tr>
  174. </table>
  175. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  176. <tr><td bgcolor="#525D76">
  177. <font color="#ffffff" face="arial,helvetica,sanserif">
  178. <a name="Towards Ant2"><strong>Towards Ant2</strong></a>
  179. </font>
  180. </td></tr>
  181. <tr><td>
  182. <blockquote>
  183. <p>
  184. We are currently collecting feature requests for Ant2. Please
  185. read the latest <a href="/ant/antnews.html">Ant news</a> for more details.
  186. </p>
  187. </blockquote>
  188. </td></tr>
  189. </table>
  190. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  191. <tr><td bgcolor="#525D76">
  192. <font color="#ffffff" face="arial,helvetica,sanserif">
  193. <a name="Get Involved"><strong>Get Involved</strong></a>
  194. </font>
  195. </td></tr>
  196. <tr><td>
  197. <blockquote>
  198. <ul>
  199. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  200. <li><a href="http://jakarta.apache.org/getinvolved/mail.html">Join Mailing Lists</a></li>
  201. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  202. </li>
  203. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  204. </li>
  205. <li><a href="/jyve-faq/Turbine/screen/DisplayTopics/action/SetAll/project_id/2/faq_id/16">FAQ</a>
  206. </li>
  207. </ul>
  208. </blockquote>
  209. </td></tr>
  210. </table>
  211. </td>
  212. </tr>
  213. <!-- FOOTER -->
  214. <tr><td colspan="2">
  215. <hr noshade="" size="1"/>
  216. </td></tr>
  217. <tr><td colspan="2">
  218. <div align="center"><font color="#525D76" size="-1"><em>
  219. Copyright &#169; 1999-2001, Apache Software Foundation
  220. </em></font></div>
  221. </td></tr>
  222. </table>
  223. </body>
  224. </html>
  225. <!-- end the processing -->