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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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.8.0RC1">
  24. <h3>January 12, 2010 - Ant 1.8.0RC1 Available</h3>
  25. <p>
  26. Apache Ant 1.8.0RC1 is now available for
  27. <a href="http://ant.apache.org/bindownload.cgi">download</a>
  28. .
  29. </p>
  30. <ul>
  31. <li>a new top level element extension-point allows build files to be
  32. extended with custom targets more easily</li>
  33. <li>if and unless attributes will be evaluated according to the
  34. values of the properties entered
  35. if these properties evaluate to true, false, on, off</li>
  36. <li>Ant now requires Java 1.4 or later</li>
  37. <li>new task include provides an alternative to &lt;import> that
  38. should be preferred when you don't want to override any targets</li>
  39. <li>numerous bug fixes and improvements as documented in Bugzilla
  40. and in WHATSNEW</li>
  41. </ul>
  42. <p>While in open source projects a final release date strongly depends
  43. on the free time of the volunteers/committers, the final release is
  44. expected one to two months maximum after this RC. So Ant 1.8.0 is
  45. expected between mid February and mid March 2010.</p>
  46. </section>
  47. <section name="Ivy 2.1.0">
  48. <h3>October 8, 2009 - Apache Ivy 2.1.0 Released</h3>
  49. <p>Apache Ivy 2.1.0 is now available for download as source or binary (with and without
  50. dependencies) from
  51. <a href="http://ant.apache.org/ivy/download.cgi">http://ant.apache.org/ivy/download.cgi</a>.</p>
  52. <p>Key features of the 2.1.0 release are</p>
  53. <ul>
  54. <li>enhanced Maven2 compatibility, with several bug fixes and
  55. more pom features covered</li>
  56. <li>new options for the Ivy Ant tasks and commandline</li>
  57. <li>configuration intersections and configuration groups</li>
  58. <li>numerous bug fixes and improvements as documented in Jira
  59. and in the release notes</li>
  60. </ul>
  61. <p>For more information see
  62. the <a href="http://ant.apache.org/ivy/">Ivy home page</a>.</p>
  63. </section>
  64. <section name="AntUnit 1.1">
  65. <h3>September 26, 2008 - Apache AntUnit 1.1 Released</h3>
  66. <p>Apache AntUnit 1.1 Beta is now available for download as <a
  67. href="http://ant.apache.org/antlibs/bindownload.cgi">binary</a>
  68. or <a
  69. href="http://ant.apache.org/antlibs/srcdownload.cgi">source</a>
  70. release.</p>
  71. <p>In addition to a few bugfixes and some new assertions AntUnit
  72. 1.1 allows test listeners to receive the log output of the
  73. project under test. Both plainlistener and xmllistener have
  74. an option that makes them echo the project's output into their
  75. respective logs.</p>
  76. <p>For more information see the <a href="antlibs/antunit/">Antlib's
  77. home page</a></p>
  78. </section>
  79. <section name="Apache Ivy is an Ant Sub-Project Now!">
  80. <h3>October 11, 2007 - Apache Ivy is an Ant Sub-Project Now!</h3>
  81. <p>Apache Ivy, "A Java based tool for tracking, resolving and
  82. managing project dependencies.", just finished <a
  83. href="http://incubator.apache.org/">Incubation</a> and has joined
  84. the Ant project. More information will be available from the Ant
  85. site soon.</p>
  86. <p>Until we've finished the migration, you can learn more about
  87. Ivy from its <a href="http://incubator.apache.org/ivy/">Incubator
  88. website</a>.</p>
  89. </section>
  90. <section name="Apache Ant">
  91. <p>
  92. Apache Ant is a Java-based build tool. In theory, it is kind of like
  93. Make, but without Make's wrinkles.
  94. </p>
  95. <p>
  96. Why another build tool when there is already <em>make</em>, <em>gnumake</em>,
  97. <em>nmake</em>, <em>jam</em>, and
  98. others? Because all those tools have limitations that Ant's original author
  99. couldn't live with when developing software across multiple platforms. Make-like
  100. tools are inherently shell-based -- they evaluate a set of dependencies, then
  101. execute commands not unlike what you would issue in a shell. This means that you
  102. can easily extend these tools by using or writing any program for the OS that
  103. you are working on. However, this also means that you limit yourself to the OS,
  104. or at least the OS type such as Unix, that you are working on.
  105. </p>
  106. <p>
  107. Makefiles are inherently evil as well. Anybody who has worked on them for any
  108. time has run into the dreaded tab problem. &quot;Is my command not executing
  109. because I have a space in front of my tab!!!&quot; said the original author of
  110. Ant way too many times. Tools like Jam took care of this to a great degree, but
  111. still have yet another format to use and remember.
  112. </p>
  113. <p>
  114. Ant is different. Instead of a model where it is extended with shell-based
  115. commands, Ant is extended using Java classes. Instead of writing shell commands,
  116. the configuration files are XML-based, calling out a target tree where various
  117. tasks get executed. Each task is run by an object that implements a particular
  118. Task interface.
  119. </p>
  120. <p>
  121. Granted, this removes some of the expressive power that is inherent by being
  122. able to construct a shell command such as
  123. <code>`find . -name foo -exec rm {}`</code>, but it
  124. gives you the ability to be cross platform -- to work anywhere and everywhere.
  125. And hey, if you really need to execute a shell command, Ant has an
  126. <code>&lt;exec&gt;</code> task that
  127. allows different commands to be executed based on the OS that it is executing
  128. on.
  129. </p>
  130. </section>
  131. <section name="Documentation">
  132. <p>
  133. You can view the documentation for the current release (Apache Ant 1.8.0RC1)
  134. <a href="manual/index.html">online</a>
  135. </p>
  136. <p>
  137. Comprehensive documentation is included in the source and binary distributions.
  138. </p>
  139. </section>
  140. <!--section name="Nightly Builds">
  141. <p>
  142. If you wish to use the latest Ant features, you can try downloading a nightly
  143. build from <a href="http://brutus.apache.org/~nightlybuild/builds/ant/">here</a>
  144. </p>
  145. </section-->
  146. <section name="Get Involved">
  147. <ul>
  148. <li><a href="http://jakarta.apache.org/getinvolved/getinvolvedindex.html">Get Involved</a></li>
  149. <li><a href="mail.html">Join Mailing Lists</a></li>
  150. <li><a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;r=1&amp;w=2">Search the Dev Mailing List</a>
  151. </li>
  152. <li><a href="http://marc.theaimsgroup.com/?l=ant-user&amp;r=1&amp;w=2">Search the User Mailing List</a>
  153. </li>
  154. </ul>
  155. </section>
  156. </body>
  157. </document>