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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <document>
  17. <properties>
  18. <author email="">Conor MacNeill</author>
  19. <author email="stefan.bodewig@freenet.de">Stefan Bodewig</author>
  20. <title>Welcome</title>
  21. </properties>
  22. <body>
  23. <section name="Ant 1.7.0Beta3">
  24. <h3>October 15, 2006 - Ant 1.7.0Beta3 Available</h3>
  25. <p>Apache Ant 1.7.0Beta3 is now available for <a
  26. href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
  27. <p>The manual of the beta version is available <a href="manual-beta">here</a>. </p>
  28. <p>Ant 1.7 introduces a resource framework. Some of the core ant
  29. tasks such as &lt;copy/&gt; are now able to process not only file
  30. system resources but also zip entries, tar entries, paths, ...
  31. Resource collections group resources, and can be further
  32. combined with operators such as union and intersection. This
  33. can be extended by custom resources and custom tasks using resources.</p>
  34. <p>
  35. Ant 1.7 starts outsourcing of optional tasks to Antlibs.
  36. The .NET antlib in preparation will replace the .NET optional tasks which ship in Ant.
  37. Support for the version control system Subversion will be only provided as an antlib to
  38. be released shortly.
  39. </p>
  40. <p>Ant 1.7 fixes also a large number of bugs.</p>
  41. <p>Ant 1.7 has no support for Java6 features, but first tests on Java6
  42. did not fail.</p>
  43. </section>
  44. <section name="AntUnit 1.0Beta2">
  45. <h3>October 29, 2006 - Apache AntUnit 1.0Beta2 Available</h3>
  46. <p>Apache AntUnit 1.0Beta1 is now available for <a
  47. href="http://ant.apache.org/antlibs/bindownload.cgi">download</a>.</p>
  48. <p>This Ant Library contains tasks to test Ant tasks using Ant
  49. instead of JUnit. For more information see the <a
  50. href="antlibs/antunit/">AntUnit home page</a>.</p>
  51. </section>
  52. <section name=".NET Ant Library 1.0Beta1">
  53. <h3>September 13, 2006 - Apache .NET Ant Library 1.0Beta1 Available</h3>
  54. <p>Apache .NET Ant Library 1.0Beta1 is now available for <a
  55. href="http://ant.apache.org/antlibs/bindownload.cgi">download</a>.</p>
  56. <p>This Ant Library contains support for tools like NUnit as well
  57. as the "old .NET tasks of Ant's core. It has been tested
  58. Microsoft's frameworks as well as Mono.</p>
  59. <p>For more information see the <a href="antlibs/dotnet/">Antlib's
  60. home page</a></p>
  61. </section>
  62. <section name="Ant 1.6.5">
  63. <h3>June 2, 2005 - Ant 1.6.5 Available</h3>
  64. <p>Apache Ant 1.6.5 is now available for <a
  65. href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
  66. <p>This is a bug fix release.</p>
  67. </section>
  68. <section name="Apache Ant">
  69. <p>
  70. Apache Ant is a Java-based build tool. In theory, it is kind of like
  71. Make, but without Make's wrinkles.
  72. </p>
  73. <p>
  74. Why another build tool when there is already <em>make</em>, <em>gnumake</em>,
  75. <em>nmake</em>, <em>jam</em>, and
  76. others? Because all those tools have limitations that Ant's original author
  77. couldn't live with when developing software across multiple platforms. Make-like
  78. tools are inherently shell-based -- they evaluate a set of dependencies, then
  79. execute commands not unlike what you would issue in a shell. This means that you
  80. can easily extend these tools by using or writing any program for the OS that
  81. you are working on. However, this also means that you limit yourself to the OS,
  82. or at least the OS type such as Unix, that you are working on.
  83. </p>
  84. <p>
  85. Makefiles are inherently evil as well. Anybody who has worked on them for any
  86. time has run into the dreaded tab problem. &quot;Is my command not executing
  87. because I have a space in front of my tab!!!&quot; said the original author of
  88. Ant way too many times. Tools like Jam took care of this to a great degree, but
  89. still have yet another format to use and remember.
  90. </p>
  91. <p>
  92. Ant is different. Instead of a model where it is extended with shell-based
  93. commands, Ant is extended using Java classes. Instead of writing shell commands,
  94. the configuration files are XML-based, calling out a target tree where various
  95. tasks get executed. Each task is run by an object that implements a particular
  96. Task interface.
  97. </p>
  98. <p>
  99. Granted, this removes some of the expressive power that is inherent by being
  100. able to construct a shell command such as
  101. <code>`find . -name foo -exec rm {}`</code>, but it
  102. gives you the ability to be cross platform -- to work anywhere and everywhere.
  103. And hey, if you really need to execute a shell command, Ant has an
  104. <code>&lt;exec&gt;</code> task that
  105. allows different commands to be executed based on the OS that it is executing
  106. on.
  107. </p>
  108. </section>
  109. <section name="Documentation">
  110. <p>
  111. You can view the documentation for the current release (Apache Ant 1.6.5)
  112. <a href="manual/index.html">online</a>
  113. </p>
  114. <p>
  115. Comprehensive documentation is included in the source and binary distributions.
  116. </p>
  117. </section>
  118. <!--section name="Nightly Builds">
  119. <p>
  120. If you wish to use the latest Ant features, you can try downloading a nightly
  121. build from <a href="http://brutus.apache.org/~nightlybuild/builds/ant/">here</a>
  122. </p>
  123. </section-->
  124. <section name="Get Involved">
  125. <ul>
  126. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  127. <li><a href="mail.html">Join Mailing Lists</a></li>
  128. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  129. </li>
  130. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  131. </li>
  132. </ul>
  133. </section>
  134. </body>
  135. </document>