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.xml 3.6 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0"?>
  2. <document>
  3. <properties>
  4. <author email="">Conor MacNeill</author>
  5. <author email="stefan.bodewig@epost.de">Stefan Bodewig</author>
  6. <title>Ant</title>
  7. </properties>
  8. <body>
  9. <section name="Ant 1.5.1">
  10. <h3>Apache Ant 1.5.1 Released!</h3>
  11. <p>Version 1.5.1 of Ant has been released. It is available for download
  12. <a href="http://www.apache.org/dist/ant/">here</a>.
  13. </p>
  14. </section>
  15. <section name="Apache Ant">
  16. <p>
  17. Apache Ant is a Java-based build tool. In theory, it is kind of like
  18. Make, but without Make's wrinkles.
  19. </p>
  20. <p>
  21. Why another build tool when there is already <em>make</em>, <em>gnumake</em>,
  22. <em>nmake</em>, <em>jam</em>, and
  23. others? Because all those tools have limitations that Ant's original author
  24. couldn't live with when developing software across multiple platforms. Make-like
  25. tools are inherently shell-based -- they evaluate a set of dependencies, then
  26. execute commands not unlike what you would issue in a shell. This means that you
  27. can easily extend these tools by using or writing any program for the OS that
  28. you are working on. However, this also means that you limit yourself to the OS,
  29. or at least the OS type such as Unix, that you are working on.
  30. </p>
  31. <p>
  32. Makefiles are inherently evil as well. Anybody who has worked on them for any
  33. time has run into the dreaded tab problem. &quot;Is my command not executing
  34. because I have a space in front of my tab!!!&quot; said the original author of
  35. Ant way too many times. Tools like Jam took care of this to a great degree, but
  36. still have yet another format to use and remember.
  37. </p>
  38. <p>
  39. Ant is different. Instead of a model where it is extended with shell-based
  40. commands, Ant is extended using Java classes. Instead of writing shell commands,
  41. the configuration files are XML-based, calling out a target tree where various
  42. tasks get executed. Each task is run by an object that implements a particular
  43. Task interface.
  44. </p>
  45. <p>
  46. Granted, this removes some of the expressive power that is inherent by being
  47. able to construct a shell command such as
  48. <code>`find . -name foo -exec rm {}`</code>, but it
  49. gives you the ability to be cross platform -- to work anywhere and everywhere.
  50. And hey, if you really need to execute a shell command, Ant has an
  51. <code>&lt;exec&gt;</code> task that
  52. allows different commands to be executed based on the OS that it is executing
  53. on.
  54. </p>
  55. </section>
  56. <section name="Documentation">
  57. <p>
  58. You can view the documentation for the current release (Apache Ant 1.5.1)
  59. <a href="manual/index.html">online</a>
  60. </p>
  61. <p>
  62. Comprehensive documentation is included in the source and binary distributions.
  63. </p>
  64. </section>
  65. <section name="Nightly Builds">
  66. <p>
  67. If you wish to use the latest Ant features, you can try downloading a nightly
  68. build from <a href="http://cvs.apache.org/builds/jakarta-ant/nightly/">here</a>
  69. </p>
  70. </section>
  71. <section name="Towards Ant2">
  72. <p>
  73. We are currently hashing out design details for Ant2. Please
  74. read the latest <a href="antnews.html">Ant news</a> for more details.
  75. </p>
  76. </section>
  77. <section name="Get Involved">
  78. <ul>
  79. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  80. <li><a href="http://jakarta.apache.org/getinvolved/mail.html">Join Mailing Lists</a></li>
  81. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  82. </li>
  83. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  84. </li>
  85. </ul>
  86. </section>
  87. </body>
  88. </document>