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 9.1 KiB

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