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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <p>
  11. <a href="http://apachecon.com/2003/US/index.html">ApacheCon US 2003</a>
  12. is now open for registration. ApacheCon is the conference for all things
  13. Apache. Come along and learn about a range of new technologies, meet some
  14. Apache folks and share the knowledge.
  15. </p>
  16. </section>
  17. <section name="Ant 1.6beta2">
  18. <p>Apache Ant 1.6beta2 is now available for <a
  19. href="http://cvs.apache.org/dist/ant/v1.6beta2/">download</a>. As
  20. we've already said in the announcements of Ant 1.5.4, this release
  21. requires JDK 1.2 or later to run.</p>
  22. <p>We encourage user to give this beta a release a try and report
  23. any bugs found so that we get a chance to fix them before we make
  24. the final release of Ant 1.6.</p>
  25. <p>Ant 1.6 adds a lot of new features, most prominently support
  26. for XML namespaces as well as a new concept of Ant libraries that
  27. makes use of namespaces to avoid name clashes of custom tasks.
  28. For a longer list of fixed bugs and new features see the release
  29. notes.</p>
  30. <p>The manual of Ant 1.6 is available on line
  31. <a href="manual-1.6beta/"> here</a>.</p>
  32. <p>If you find anything that hasn't been covered in the manual (I bet you
  33. did) or could be explained better, feel free to help us out in the
  34. <a href="http://nagoya.apache.org/wiki/apachewiki.cgi?NewAntFeaturesInDetail">Wiki </a>.</p>
  35. </section>
  36. <section name="Ant 1.5.4">
  37. <p>Apache Ant 1.5.4 is now available for
  38. <a href="http://ant.apache.org/bindownload.cgi">download</a>.
  39. </p>
  40. <div class="warning">
  41. <div class="label">Note</div>
  42. <div class="content">Ant 1.5.4 will be the last release that supports
  43. JDK 1.1. The next major release of Ant, Ant 1.6, will require JDK 1.2 or
  44. later
  45. </div>
  46. </div>
  47. </section>
  48. <section name="Apache Ant">
  49. <p>
  50. Apache Ant is a Java-based build tool. In theory, it is kind of like
  51. Make, but without Make's wrinkles.
  52. </p>
  53. <p>
  54. Why another build tool when there is already <em>make</em>, <em>gnumake</em>,
  55. <em>nmake</em>, <em>jam</em>, and
  56. others? Because all those tools have limitations that Ant's original author
  57. couldn't live with when developing software across multiple platforms. Make-like
  58. tools are inherently shell-based -- they evaluate a set of dependencies, then
  59. execute commands not unlike what you would issue in a shell. This means that you
  60. can easily extend these tools by using or writing any program for the OS that
  61. you are working on. However, this also means that you limit yourself to the OS,
  62. or at least the OS type such as Unix, that you are working on.
  63. </p>
  64. <p>
  65. Makefiles are inherently evil as well. Anybody who has worked on them for any
  66. time has run into the dreaded tab problem. &quot;Is my command not executing
  67. because I have a space in front of my tab!!!&quot; said the original author of
  68. Ant way too many times. Tools like Jam took care of this to a great degree, but
  69. still have yet another format to use and remember.
  70. </p>
  71. <p>
  72. Ant is different. Instead of a model where it is extended with shell-based
  73. commands, Ant is extended using Java classes. Instead of writing shell commands,
  74. the configuration files are XML-based, calling out a target tree where various
  75. tasks get executed. Each task is run by an object that implements a particular
  76. Task interface.
  77. </p>
  78. <p>
  79. Granted, this removes some of the expressive power that is inherent by being
  80. able to construct a shell command such as
  81. <code>`find . -name foo -exec rm {}`</code>, but it
  82. gives you the ability to be cross platform -- to work anywhere and everywhere.
  83. And hey, if you really need to execute a shell command, Ant has an
  84. <code>&lt;exec&gt;</code> task that
  85. allows different commands to be executed based on the OS that it is executing
  86. on.
  87. </p>
  88. </section>
  89. <section name="Documentation">
  90. <p>
  91. You can view the documentation for the current release (Apache Ant 1.5.4)
  92. <a href="manual/index.html">online</a>
  93. </p>
  94. <p>
  95. Comprehensive documentation is included in the source and binary distributions.
  96. </p>
  97. </section>
  98. <section name="Nightly Builds">
  99. <p>
  100. If you wish to use the latest Ant features, you can try downloading a nightly
  101. build from <a href="http://cvs.apache.org/builds/ant/nightly/">here</a>
  102. </p>
  103. </section>
  104. <section name="Get Involved">
  105. <ul>
  106. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  107. <li><a href="mail.html">Join Mailing Lists</a></li>
  108. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  109. </li>
  110. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  111. </li>
  112. </ul>
  113. </section>
  114. </body>
  115. </document>