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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0"?>
  2. <!--
  3. Copyright 2001-2005 The Apache Software Foundation
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <document>
  15. <properties>
  16. <author email="">Conor MacNeill</author>
  17. <author email="stefan.bodewig@freenet.de">Stefan Bodewig</author>
  18. <title>Welcome</title>
  19. </properties>
  20. <body>
  21. <section name="Ant 1.6.3beta1">
  22. <h3>March 31st, 2005 - Ant 1.6.3beta1 Available</h3>
  23. <p>Apache Ant 1.6.3beta1 is now available for <a
  24. href="http://cvs.apache.org/dist/ant/v1.6.3beta1">download</a>.</p>
  25. <p>There is a large list of fixed bugs and enhancements.</p>
  26. <p>Some of the bugs affecting the embedded use of Ant are fixed.</p>
  27. </section>
  28. <section name="Ant 1.6.2">
  29. <h3>July 16, 2004 - Ant 1.6.2 Available</h3>
  30. <p>Apache Ant 1.6.2 is now available for <a
  31. href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
  32. <p>Nested elements for namespaced tasks and types may belong to the
  33. Ant default namespace as well as the task's or type's namespace.</p>
  34. <p>All exceptions thrown by tasks are now wrapped in a
  35. buildexception giving the location in the buildfile of the task.</p>
  36. <p>Ant 1.6.2 fixes a large number of bugs and adds a number of
  37. features which were asked for by users on Bugzilla.</p>
  38. </section>
  39. <section name="Apache Ant">
  40. <p>
  41. Apache Ant is a Java-based build tool. In theory, it is kind of like
  42. Make, but without Make's wrinkles.
  43. </p>
  44. <p>
  45. Why another build tool when there is already <em>make</em>, <em>gnumake</em>,
  46. <em>nmake</em>, <em>jam</em>, and
  47. others? Because all those tools have limitations that Ant's original author
  48. couldn't live with when developing software across multiple platforms. Make-like
  49. tools are inherently shell-based -- they evaluate a set of dependencies, then
  50. execute commands not unlike what you would issue in a shell. This means that you
  51. can easily extend these tools by using or writing any program for the OS that
  52. you are working on. However, this also means that you limit yourself to the OS,
  53. or at least the OS type such as Unix, that you are working on.
  54. </p>
  55. <p>
  56. Makefiles are inherently evil as well. Anybody who has worked on them for any
  57. time has run into the dreaded tab problem. &quot;Is my command not executing
  58. because I have a space in front of my tab!!!&quot; said the original author of
  59. Ant way too many times. Tools like Jam took care of this to a great degree, but
  60. still have yet another format to use and remember.
  61. </p>
  62. <p>
  63. Ant is different. Instead of a model where it is extended with shell-based
  64. commands, Ant is extended using Java classes. Instead of writing shell commands,
  65. the configuration files are XML-based, calling out a target tree where various
  66. tasks get executed. Each task is run by an object that implements a particular
  67. Task interface.
  68. </p>
  69. <p>
  70. Granted, this removes some of the expressive power that is inherent by being
  71. able to construct a shell command such as
  72. <code>`find . -name foo -exec rm {}`</code>, but it
  73. gives you the ability to be cross platform -- to work anywhere and everywhere.
  74. And hey, if you really need to execute a shell command, Ant has an
  75. <code>&lt;exec&gt;</code> task that
  76. allows different commands to be executed based on the OS that it is executing
  77. on.
  78. </p>
  79. </section>
  80. <section name="Documentation">
  81. <p>
  82. You can view the documentation for the current release (Apache Ant 1.6.2)
  83. <a href="manual/index.html">online</a>
  84. </p>
  85. <p>
  86. Comprehensive documentation is included in the source and binary distributions.
  87. </p>
  88. </section>
  89. <section name="Nightly Builds">
  90. <p>
  91. If you wish to use the latest Ant features, you can try downloading a nightly
  92. build from <a href="http://brutus.apache.org/~nightlybuild/builds/ant/">here</a>
  93. </p>
  94. </section>
  95. <section name="Get Involved">
  96. <ul>
  97. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  98. <li><a href="mail.html">Join Mailing Lists</a></li>
  99. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  100. </li>
  101. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  102. </li>
  103. </ul>
  104. </section>
  105. </body>
  106. </document>