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 4.0 kB

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