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.

WHATSNEW 26 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. Changes from Ant 1.4.1 to current CVS version
  2. ==============================================
  3. Changes that could break older environments:
  4. --------------------------------------------
  5. * the RegexpMatcher interface has been extended to support case
  6. insensitive matches and other options - custom implementations of
  7. this interface won't work any longer. We recommend to use the new
  8. Regexp interface that also supports substitution instead of the
  9. RegexpMatcher interface in the future.
  10. Fixed bugs:
  11. -----------
  12. * Fixed bug where ant would not copy system properties into new Project
  13. in ant/antcall tasks when inheritall="false" is set.
  14. * <propertyfile> would not close the original property file.
  15. * <ant> will no longer override a subbuilds basedir with inheritall="true".
  16. * Fixed problem with the built-in <junit> formatters which assumed
  17. that only one test could be running at the same time - this is not
  18. necessarily true, see junit.extensions.ActiveTestSuite.
  19. Other changes:
  20. --------------
  21. * New task replaceregexp
  22. * The attributes zipfile, jarfile, warfile and earfile (from the Zip,
  23. Jar, War and Ear tasks) have been deprecated and superseded by a
  24. new attribute "file".
  25. * The attribute zipfile in GZip has been deprecated and superseded
  26. by "tofile" attribute.
  27. * Added a new condition <isset> that test for the existence of a
  28. property to the condition task.
  29. * Ant's testcases require JUnit 3.7 or above as they now use the new
  30. assertTrue method instead of assert.
  31. * <taskdef> and <typedef> will now emit a warning if a task/type of
  32. the given name already exists.
  33. * A new revision of VAJ tasks: The most important new feature
  34. is the ability to execute VAJ tasks from the command line by
  35. exploiting the Remote Tool Access feature of VAJ.
  36. Changes from Ant 1.4 to Ant 1.4.1
  37. ===========================================
  38. Fixed bugs:
  39. -----------
  40. * <ant>'s antfile attribute will now also be considered an absolute path on
  41. Windows systems, if it starts with a \ and no drive specifier.
  42. * The fullpath attribute of <zipfileset> has been ignored if you used
  43. the src attribute at the same time.
  44. * The manifest file is now always placed as the second entry (after /META-INF)
  45. in generated jars. This allows the manifest to be read by JarInputStreams
  46. * Fixed bug in depend task which would fail with a NullPointerException if no
  47. dependency cache was specified.
  48. * sql task now handles REM statements correctly so that lines starying with rem
  49. but which are not comments are actually processed.
  50. * XMLLogger now uses the task's name rather than the classname
  51. * <mapper>s will now work as expected if the to pattern expands to an
  52. absolute pathname.
  53. * <javac> didn't ignore memory settings in non-fork mode
  54. * <cab> didn't split the options attribute into several command line
  55. arguments correctly.
  56. Other changes:
  57. --------------
  58. * New source attribute for <javac> to enable assertion in JDK 1.4
  59. * XmlLogger and <antstructure> now add an encoding declaration to the
  60. XML files they generate.
  61. * <fileset> has a new attribute "casesensitive" to make it match
  62. filenames in a case insensitive way (if you set it to false) - by
  63. default filesets remain case sensitive.
  64. Changes from Ant 1.3 to Ant 1.4
  65. ===========================================
  66. Changes that could break older environments:
  67. --------------------------------------------
  68. * JUnitReport now uses the xalan redirect extension for multi-output.
  69. With Xalan 1.2.2 it forces the use of bsf.jar in the classpath.
  70. (Available in the xalan distribution). It is recommended to switch
  71. to Xalan 2.x that do not need it.
  72. * Zip.setWhenempty() has changed its signature.
  73. * <rmic> is now implemented using a factory. This makes extending
  74. rmic to use a new compiler a lot easier but may break custom
  75. versions of this task that rely on the old implementation.
  76. * several Zip methods have changed their signature as we now use a Zip
  77. package of our own that handles Unix permissions for directories.
  78. Furthermore <zip> will now use the platform's default character
  79. encoding for filenames - this is consistent with the command line
  80. ZIP tools, but causes problems if you try to open them from within
  81. Java and your filenames contain non US-ASCII characters. Use the new
  82. encoding attribute of the task and set it to UTF8 to get the old
  83. behavior.
  84. * The <pvcs> task has been moved to a package of its own.
  85. * JUnitResultFormater has two additional methods that must be
  86. implemented by custom formatters.
  87. * Ant will no longer use the canonical version of a path internally -
  88. this may yield different results on filesystems that support
  89. symbolic links.
  90. * The output generated by the xml formatter for <junit> has changed
  91. again, it doesn't format the numeric value in the time attribute anymore.
  92. * Pattern matching rules have changes slightly, the pattern foo*
  93. doesn't match files contained in a directory named foo - use foo/*
  94. instead.
  95. * <fixcrlf> will not remove trailing whitespace at the end of lines anymore.
  96. * The Classloader usage has been changed for the taskdef, property, available
  97. and sql tasks so that it delegates to the parent classloader. This may cause
  98. ClassNotFoundExceptions to be thrown if a system class attempts to load a
  99. class in the taskdef's classpath (typically factory objects).
  100. * Ant now allows multithreading of tasks and the containment of tasks within
  101. other tasks. This can break customer listeners which do not expect messages
  102. from a task before the previous task has finished.
  103. * Ant now installs its own ouput stream into System.out to route output to the
  104. task currently executing on the current thread. This also means that all
  105. output is now routed as Ant message events. Customer listeners and loggers
  106. should not call System.out at any time. This has always been true but such
  107. usage now will cause problems due to possible recursion.
  108. * Invalid manifest files will now cause build failures in the <jar> task.
  109. * Ant Introspection now looks for methods with method names starting with
  110. addConfigured. When called these methods are passed an argument after it has
  111. been configured from the build file. Custom tasks supporting nested elements
  112. starting with the name configured will no longer function.
  113. * The environment variable JAVACMD that can be used to specify the
  114. java executable to Ant's wrapper scripts must not contain additional
  115. command line parameters any longer - please use the environment
  116. variable ANT_OPTS for such parameters now.
  117. * Ant's wrapper scripts now quote the CLASSPATH environment variable, thus
  118. supporting classpaths which refer to directories containing spaces. This means
  119. that the CLASSPATH environment variable cannot have quotes. Any quotes should
  120. be removed. This will not affect the operation of the CLASSPATH environment
  121. variable in other contexts.
  122. * A delete task like
  123. <delete includeEmptyFilesets="true">
  124. <fileset dir="somedir" />
  125. </delete>
  126. will now remove "somedir" as well, unless there are still files left
  127. in it (matched by the default excludes).
  128. * The copy task will now fail if the file to be copied is not found.
  129. * Ant properties defined in properties files now behave the same way as
  130. properties defined in the build file. In particular the $ character needs
  131. to be escaped in property values by doubling it to $$. So, to define a
  132. property with the value $hello, you need to define it in a properties file
  133. as
  134. test.prop=$$hello
  135. This was not the case in Ant 1.3
  136. Other changes:
  137. --------------
  138. * New tasks: ear, p4counter, record, cvspass, vsscheckin, vsscheckout,
  139. typedef, sleep, mimemail, set of tasks for Continuus/Synergy, dependset,
  140. condition, maudit, mmetrics, jpcoverage, jpcovreport, jpcovmerge
  141. * Ant now uses JAXP 1.1
  142. * rmic now supports Kaffe's and Weblogic's version of rmic.
  143. * new magic property build.rmic to chose the rmic implementation
  144. * <tar> will now add empty directories as well
  145. * you can now specify a description for <p4change>
  146. * <touch> can now work on <fileset>s
  147. * <uptodate> now supports a value attribute
  148. * <fail> supports nested text
  149. * <fixcrlf> won't override files that are already in the correct
  150. format.
  151. * <sql> now supports REM comments as well as // and --
  152. * <jar> now has a nested <metainf> element following the same idea as
  153. <war>'s <webinf>.
  154. * <pvcs> can now handle multiple projects.
  155. * <available> now has a "type" attribute you can use in conjunction
  156. with the "file" attribute to specify whether the "file" you're
  157. looking for is a file or a directory.
  158. * New <junit> formatter named "brief"
  159. * <ejbjar> changes
  160. * Add support for Borland Application Server to the <ejbjar> task using
  161. a <borland> nested element.
  162. * Add support for iPlanet Application Server to the <ejbjar> task. Also
  163. includes some iPlanet utility tasks
  164. * Add support for JBoss Application Server to the <ejbjar> task.
  165. * Add a naming attribute to control the naming scheme that
  166. ejbjar uses to name the generated EJB jars.
  167. * Weblogic element now sets the compiler class for EJB 2.0 beans
  168. * <dtd> elements can be specified at the <ejbjar> level for building generic
  169. beans
  170. * <dtd> elements can now be URLs
  171. * Allow the manifest to be specified for the generated jars
  172. * The weblogic element now supprts an attribte noEJBC to skip the processing
  173. of the jar by ejbc. The ejbc step will then occur at deployment
  174. * weblogic will tell ejbc to use Jikes compiler if build.compiler is set to
  175. jikes. It can be restored to the default, javac, operation if desired.
  176. * Allow the <sql> Delimiter to be set in the so that Oracle stored procs may be
  177. entered
  178. * <execon> and <apply> can now optionally skip empty filesets.
  179. * <javadoc> has a new useexternalfile attribute that makes it use a
  180. temporary file for sourcefile and package names - helps to defeat
  181. command line length limitations.
  182. * Data types like <path> can now be defined inside of <target>s
  183. * you can now specify a classpath for <style> - the XSLZ processor
  184. will be loaded from this path
  185. * added a force attribute to <style> to support dependencies that the
  186. task cannot determine itself (dependency on parameters, not file
  187. modification times for example)
  188. * added vmlauncher attribute to exec tasks. This defaults to true. If
  189. it is set to false, the VM's ability to launch commands in bypassed
  190. and the OS shell, either directly or through the auxillary antRun
  191. scripts is used.
  192. * regexp mapper now supports the java.util.regex package of JDK 1.4.
  193. * New filesonly attribute for <zip> and friends to suppress directory
  194. entries.
  195. * New update attribute for <zip> and friends - update an existing
  196. archive instead of creating a new one.
  197. * <apply> and <execon> have been merged into a single task.
  198. * added vssver.scc to the default excludes
  199. * <available> has a new filepath attribute/nested element that allows
  200. you top search for a file in a given path.
  201. * <junit> can now optionally set a property on test failure.
  202. * <taskdef> can now define several tasks at once, reading the
  203. name/classname pairs from a property file or resource.
  204. * <unzip/unjar/unwar> and <untar> now have an overwrite attribute that
  205. defaults to true. If set to false, files that are newer than the
  206. files in the archive will not be replaced.
  207. * <patternset> and <fileset> now support nested <in/excludesfile>
  208. elements - using these you can have more than one in/excludes file
  209. per <patternset>.
  210. * Three new supported compilers for javac: kjc for kopi, gcj for the
  211. gcc frontend and sj for Symantec's compiler.
  212. In addition extJavac or the new fork attribute can be
  213. used to run the JDK's javac in a JVM separate from Ant.
  214. * <fixrlf> can now with CR only line-ends and can use an arbitraty
  215. between 2 and 80.
  216. * The .NET tasks have been adapted to the beta2 release of the framework.
  217. * <move> will now try to rename() files before copying them byte by
  218. byte - only if filtering is of, of course.
  219. * <ant> and <antcall> tasks now support a new attribute inheritAll. When set to
  220. false, only user properties are passed through to the target Ant instance.
  221. This includes properties set on the command line and properties explicitly
  222. passed
  223. * <javadoc> now skips off line links if the package list cannot be found.
  224. * <wlrun> now allows the security policy file to exist outside the weblogic
  225. directory.
  226. * <java> task will set the Thread contextClassLoader under JDKs 1.2+ to the
  227. classloader for the class being executed.
  228. * Introduce the concept of a TaskContainer - a task or element which can contain
  229. Ant Tasks.
  230. * Add new tasks implementing the TaskContainer interface <parallel> and
  231. <sequential> which allow parallel execution of tasks to be specified.
  232. * <depend> task will now take into account dependencies on jar files and class
  233. files from a given classpath.
  234. * <jar> manifest entries may now be specified in the build file either
  235. completely or to be merged with a manifest file.
  236. * <tstamp> task custom formats now support locales.
  237. * Added a listner which will forward events to Log4J. The log4j configuration
  238. file should be in the directory from which Ant is run or passed as a system
  239. property using a JVM argument.
  240. * Introduced the concept of <filtersets> to allow for more control in which
  241. filters get applied in a <copy> or <move> operation.
  242. * Added nowarn attribute to javac and deprecated the Jikes-magic property
  243. build.compiler.warnings.
  244. * The <depend> task cache format has changed and all dependency information is
  245. now stored in a single file.
  246. Fixed bugs:
  247. -----------
  248. * Testcases have been made independent of current working directory.
  249. * Input ZIP-Files will be closed when using a <zipfileset>.
  250. * p4 tasks now don't fail if user, port or client have been omitted
  251. (and this is acceptable for the context of the command).
  252. * <javah>'s outputfile attribute will be resolved as relative to the
  253. projects basedir.
  254. * <antstructure> should create a valid DTD for propertyfile.operation.entry
  255. and omit tasks it fails to load.
  256. * won't try to pass a -bootclasspath flag to javac 1.1 anymore
  257. * <style>'s style attribute no handles absolute paths correctly.
  258. * <delete includeemptydirs="true"> now deletes more than just the leaf
  259. directories.
  260. * You can now specify a <fileset> for a directory that doesn't exist at
  261. declaration time but will created before the fileset gets used for the
  262. first time.
  263. * If the quiet attribute has been set, <delete> will handle <fileset>s
  264. with non-existing directories gracefully.
  265. * Output written by testcases will now be captured by the <junit> task
  266. and passed to the formatters.
  267. * Quote the -group parameter to Javadoc as per the specification
  268. * Initialise classes when loaded through the AntClassLoader - that is, run
  269. static initializers
  270. * Implement getResource() and getResources() in AntClassLoader
  271. * Create the <ejbjar> weblogic command line as a set of arguments rather than
  272. as a single line. Avoids problems with paths which contain spaces.
  273. * <ejbjar> now fails when the weblogic ejbc compiler reports an error.
  274. * Make the AntClassLoader load resources in the same order as it currently
  275. loads classes.
  276. * Handle classpaths with spaces
  277. * Make sure XSLT processors close their output files in <style>.
  278. * perform proper uptodate check in <rmic> when compiling for IIOP.
  279. * <jjtree>'s uptodate test works even if outputdirectory is not the
  280. parent dir of target
  281. * <copy> will remove target file (if it exists) before writing to it -
  282. this avoids problems with links on filesystems that support them.
  283. * <ftp> now properly recurses remote directories.
  284. * <ftp> closes remote connection when it's done.
  285. * <junit> tries to include all necessary classes for the task itself
  286. to the classpath when running in fork mode - doesn't work for JDK 1.1
  287. * <apply> and <execon> do now execute the command only once, if you
  288. specify the parallel attribute - instead of once per fileset.
  289. * directory based tasks and fileset could miss some included files in
  290. directories that have been excluded
  291. * <fixcrlf> failed for large files.
  292. * <move> removed files you tried to move to themselves.
  293. * <sql> task will not trty to print the result set unless the query succeeded.
  294. * Ant classloader will now ignore paths which are invalid relative to the
  295. project base
  296. * <ejbjar> weblogic elements check for jar file changes has been fixed.
  297. Previously some changes would not be included.
  298. * properties loaded from properties files are now resolved internally. This
  299. removes the spurious warnings about usage of properties which have not been
  300. set.
  301. * <jar> task and friends now process the JAR manifest to ensure it is valid.
  302. * The task finished event now includes any exception thrown by the task.
  303. * <java> task now supports a jvmVersion attribute so that if another JVM is
  304. being used, Ant can determine which options to use for features such as the
  305. VM memory limits
  306. Changes from Ant 1.2 to Ant 1.3
  307. ===========================================
  308. Changes that could break older environments:
  309. --------------------------------------------
  310. * Ant doesn't search for the buildfile anymore, unless you use the new
  311. -find argument.
  312. * <perforce> has been replaced by a number of new tasks.
  313. * <javac> is now implemented using a factory. This makes extending
  314. javac to use a new compiler a lot easier but may break custom
  315. versions of this task that rely on the old implementation.
  316. * The output generated by the xml formatter for <junit> has changed a
  317. little, it doesn't append " sec" in the time attribute anymore.
  318. Other changes:
  319. --------------
  320. * A GUI Frontend: Antidote. This is currently in development. At this
  321. time, this is not part of the Ant release, although the source is
  322. included if you are interested.
  323. * New tasks: stylebook, propertyfile, depend, antlr, telnet, csc,
  324. ilasm, apply, javah, several clearcase tasks, junitreport, sound
  325. * Added output attribute to <java>.
  326. * Added nested zipfileset element to <zip>
  327. * Changed <sql> so that printing is at the task level rather than
  328. the statement level.
  329. * javadoc task will pass -d flag to any doclet if the destDir attribute is
  330. given. If the doclet does not accept the -d flag then omit the destdir
  331. attribute.
  332. * <cab> can work on non-Windows platforms with the help of libcabinet.
  333. See http://trill.cis.fordham.edu/~barbacha/cabinet_library/.
  334. * <ftp> now supports passive mode.
  335. * New <mapper> data type that can be used to get influence on the
  336. target files for some tasks like <copy> or enable new types of tasks
  337. like <apply>.
  338. * <execon> provides more control over the command line now, the names
  339. of the source files are no longer required to be at the end of the
  340. command.
  341. * Style tasks will now support TraX compliant XSL processors if one is present
  342. in your classpath.
  343. * Added a failonerror to the javac task. If set to false, the build will
  344. continue even if there are compilation errors.
  345. * Added nested format elements to the tstamp task allowing additional time
  346. formats to be defined for arbitrary properties.
  347. * Added classpath attribute and nested classpath element to <property>
  348. to make the resource attribute more powerful.
  349. * ${} property expansion will now be performed on the patterns read
  350. from files specified as includesfile or excludesfile attributes.
  351. * The <tar> and <untar> tasks now support GNU format for handling paths
  352. which are greater than 100 characters in length. In addition the <tar>
  353. task now supports nested filesets through which the file permissions
  354. may be controlled.
  355. * wlrun, wlstop and ejbjar now support Weblogic 6.0
  356. * The MPasre task has been updated to work with MParse 2.0
  357. * The documentation has been significantly updated.
  358. Fixed bugs:
  359. -----------
  360. * <signjar> doesn't use deprectated methods anymore.
  361. * javadoc's failonerror attribute works again
  362. * javadoc's additionalparam attribute will now be split into separate
  363. parameters (on spaces) to allow for more than one parameter.
  364. * Changed <sql> task so that printing result sets works on Oracle
  365. * Changes to ddcreator and ejbc helper to respect the descriptor hierarchy
  366. keppgenerated in ejbc can now be turned off
  367. * ejbjar now correctly ignores <ejb-ref> elements in the deployment descriptor.
  368. CMP files are included by parsing the weblogic deployment descriptor rather
  369. than relying on the naming convention used in ant 1.2
  370. * ejbjar includes super classes and super interfaces into the generated ejb
  371. jar files. The <support> nested element allows support classes to be
  372. included in the EJB jar. The toplink element should now correctly locate
  373. the toplink descriptor.
  374. * <vssget> now correctly deals with spaces in arguments
  375. * <jar> fails early if a given manifest file doesn't exist
  376. * <rmic> doesn't search for the _Skel file anymore when stubversion is
  377. set to 1.2.
  378. * <rmic> uses the the same classpath to verify a class can be rmic'd
  379. as it passes to the compiler.
  380. * org.apache.tools.mail.MailMessage (and therefore <mail>) can now
  381. handle SMTP servers sending multi line responses.
  382. * nested <classpath> elements of <taskdef> now work for <taskdef>s not
  383. nested into <target> as well.
  384. * <property> and <available> will search for the resource "foo" instead
  385. of "/org/apache/tools/ant/taskdefs/foo" when given a relative resource
  386. name foo.
  387. * Handle build files in directories whose name contained a "#" character
  388. * <junit> can now log to files whose name contains a comma as well.
  389. * The AntClassLoader now refers to the loader which loaded it, any
  390. requests it does not handle itself. Previously these went to the
  391. primordial loader.
  392. Changes from Ant 1.1 to Ant 1.2
  393. ===============================
  394. Changes that could break older environments:
  395. --------------------------------------------
  396. * Semantics of <property> has changed again in the hope to be more
  397. intuitive. ${} expansion now happens at runtime and <property> tags
  398. living inside of targets only take effect if they are visited at
  399. runtime.
  400. As a side effect of this change, task's attributes get set at runtime
  401. not at parser time as well, which might change the results of
  402. <script>s or other custom tasks that reference other tasks by their id
  403. attribute.
  404. * copying of support files in <javac> has been removed - as well as
  405. the filtering attribute.
  406. * the <expand> and <keysubst> tasks have been removed.
  407. * the ignore and items attributes of directory based tasks have been removed.
  408. * the command line switches _not_ starting with - have been removed.
  409. * Path and EnumeratedAttribute have been moved from
  410. org.apache.tools.ant to org.apache.tools.ant.types.
  411. * the class attributes of <available>, <java>, <rmic> and <taskdef>
  412. have been removed.
  413. * the src attribute of <chmod> has been removed.
  414. * <patch> and <javadoc> have lost some of their attributes.
  415. * <java> and <cvs> have lost some undocumented attributes.
  416. * the Unix antRun script would search for command.sh in the directory
  417. it changed to and invoke this instead of command if present. This
  418. behavior has been dropped.
  419. * <ejbjar> task syntax has been changed significantly
  420. * <exec> is no longer implemented by org.apache.tool.ant.taskdefs.Exec.
  421. Custom tasks that rely on Project.createTask("exec") to return an
  422. instance of this class are going to fail.
  423. * nested <include> and <exclude> elements expect the value of their
  424. name attribute to be a single pattern, they don't accept multiple
  425. patterns anymore. Split them into multiple elements of the same type.
  426. * <delete dir="somedir" /> will now delete the directory itself as
  427. well as all included files. If you just want to clean out the
  428. directory and keep the empty one, use a nested fileset.
  429. Other changes:
  430. --------------
  431. * New tasks: antstructure, cab, execon, fail, ftp, genkey, jlink,
  432. junit, sql, javacc, jjtree, starteam, war, unwar, uptodate,
  433. native2ascii, copy, move, mparse.
  434. * copydir, copyfile, deltree and rename are now deprecated. They
  435. should be replaced with the new copy, delete and move tasks.
  436. * <java> uses a ClassLoader of its own in no-fork mode if a classpath is
  437. specified.
  438. * <style> will create the necessary target directories and reprocess
  439. all files if the stylesheet changes.
  440. * New data types fileset and patternset - expected to get a broader use.
  441. They, as well as PATH like structures, can now be defined on a global
  442. level and later be referenced by their id attribute.
  443. * You can specify environment variables to <exec>.
  444. * <get> can check whether a remote file is actually newer than a local
  445. copy before it starts a download (HTTP only).
  446. * Added a -logger option to allow the class which performs logging to be
  447. specified on the command line.
  448. * Added a -emacs option to tell the logger to leave out taskname adornments
  449. on log output.
  450. * <chmod> works on all files in parallel and supports multiple filesets.
  451. * <replace> can now use tokens and/or values that cross line boundaries.
  452. * build.compiler supports now jvc as well.
  453. * project specific help can now be obtained with the -projecthelp option.
  454. * Added a -debug option to make -verbose less verbose (and more useful)
  455. * Ant will now search for a file named build.xml in the parent directory
  456. and above (towards the root of the filesystem) if you didn't specify
  457. -buildfile and there is no build.xml in the current directory.
  458. * <echo> can now write to a file and accepts nested text.
  459. Fixed bugs:
  460. -----------
  461. * <chmod> didn't work when used as a directory based task.
  462. * Path, Available, Property didn't resolve relative filenames with
  463. respect to the Project's basedir.
  464. * Project didn't interpret the basedir attribute correctly in all
  465. cases.
  466. * Nested <src> in <javac> caused NullPointerException.
  467. * Corrupt Zip- and Jar-files ar now deleted if the task fails.
  468. * many more fixes we've forgotten to document here ...
  469. * The packagelistloc attribute of <javadoc>'s <link> child will be
  470. resolved as a file (i.e. it is either absolute or relative to
  471. basedir).