Apache Ant 1.8 发布
感谢Apache的工作,Ant1.8最终版已经发布,ChangeLog如下:* Lexically scoped local properties, i.e. properties that areonly defined inside a target, sequential block or similar environment.
* <import> can now import from any file- or URL-providing resource - this includes <javaresource>.
* Various improvements to the directory scanning code that help withsymbolic link cycles (as can be found on MacOS X Java installations forexample) and improve scanning performance. For big directory trees theimprovement is dramatic.
* The way developers can extend Ant'sproperty expansion algorithm has been rewritten (breaking the olderAPI) to be easier to use and be more powerful.
* a new top level element extension-point allows build files to be extended with custom targets more easily
* At the same time the if and unless attributes have been rewritten todo the expected thing if applied to a property expansion (i.e.if="${foo}" will mean "yes, do it" if ${foo} expands to true, in Ant1.7.1 it would mean "no" unless a property named "true" existed). Thisadds "testing conditions" as a new use-case to property expansion.
* Ant now requires Java 1.4 or later
* new task include provides an alternative to <import> thatshould be preferred when you don't want to override any targets
* numerous bug fixes and improvements as documented in Bugzilla and in WHATSNEW
现在已经可以下载,地址是:http://ant.apache.org/bindownload.cgi
页:
[1]