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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. Changes from Ant 1.4.1 to current CVS version
  2. ==============================================
  3. Changes that could break older environments:
  4. --------------------------------------------
  5. * Important: Single $ signs are no longer silently stripped!
  6. Before you panic that we have broken all your build files, we have kept
  7. the old "$$" -> "$" behaviour. So only build files which accidentally had
  8. a $ sign in a string that was being silently stripped may break.
  9. We added this fix to stop newbie confusion; if you want to write a
  10. build file which works on ant versions 1.4.1 or earlier, stay with
  11. the double $$ sign rule.
  12. * Shipped XML parser is now Xerces 2.0.1 along with the XML Parser APIs.
  13. XML Parser APIs is a separate jar that contains the necessary
  14. JAXP/DOM/SAX classes.
  15. * <telnet> was fixed to expand properties inside nested <read> and
  16. <write> elements; before this only happened when you assigned the text
  17. to the string attribute. If you had $ signs in the string, they may
  18. need escaping.
  19. * the RegexpMatcher interface has been extended to support case
  20. insensitive matches and other options - custom implementations of
  21. this interface won't work any longer. We recommend to use the new
  22. Regexp interface that also supports substitution instead of the
  23. RegexpMatcher interface in the future.
  24. * <gzip> will throw an exception if your src attribute points to a directory.
  25. * Unjar, Unzip and Unwar will throw an exception if the Src attribute
  26. represents a directory. Support for nested filesets is provided
  27. instead.
  28. * It is no longer possible to overwrite a property using tasks like
  29. <condition>, <exec>, <pathconvert>, or <tstamp>. In some exceptional
  30. cases it will generate a warning if you attempt to overwrite an
  31. existing property.
  32. * Taskwriters please note: Whenever tasks had any overloaded set* methods,
  33. Ant's introspection mechanism would select the last overloaded method
  34. provided to it by the Java Runtime. A modification has now been made such
  35. that when the Java Runtime provides a method with a String as its argument,
  36. a check is made to see if there is another overloaded method that takes in
  37. some other type of argument. If there is one such method, then the method
  38. that takes in String as an argument is not selected by the Introspector.
  39. * The pattern definition **/._* has been included into the Default
  40. Excludes list.
  41. * <propertyfile>'s <entry> element was modified to remove "never" as a value
  42. as its behavior was undocumented and flakey.
  43. * The -projecthelp flag now only prints out targets that include the
  44. 'description' attribute, unless the -verbose or -debug flag is included
  45. on the Ant command line.
  46. * Ant's testcases now require JUnit 3.7 or above, as they now use the new
  47. assertTrue method instead of assert.
  48. * If the 'output' attribute of <ant> is set to a simple filename or a
  49. relative path, the file is created relative to ${basedir}, not ${user.dir}.
  50. * The default value for build.compiler is now javac1.x with x
  51. depending on the JDK that is running Ant instead of classic/modern.
  52. Fixed bugs:
  53. -----------
  54. * A bug existed that prevented generated log files from being deleted as
  55. part of the build process itself. This has now been fixed.
  56. * Fixed bug where <move> ignored <filterset>s.
  57. * Ant works properly with the combination of Java1.4/WindowsXP.
  58. * Fixed bug where <java> used to sometimes invoke class constructors twice.
  59. * Fixed bug with 4NT shell support.
  60. * Fixed bug where ant would not perform ftp without remotedir being
  61. specified even though this was not mandatory.
  62. * Fixed bug where ant would not copy system properties into new Project
  63. in ant/antcall tasks when inheritall="false" is set.
  64. * <propertyfile> would not close the original property file.
  65. * <ant> will no longer override a subbuild's basedir with inheritall="true".
  66. * Fixed problem with the built-in <junit> formatters which assumed
  67. that only one test could be running at the same time - this is not
  68. necessarily true, see junit.extensions.ActiveTestSuite.
  69. * <jar>'s whenEmpty attribute is useless as JARs are never empty, they
  70. contain at least a manifest file, therefore it will now print a
  71. warning and do nothing.
  72. * <typedef> hasn't been all that useful as it couldn't be used outside
  73. of targets (it can now) and nested "unknown" elements have always
  74. been considered to be tasks (changed as well).
  75. * <fixcrlf> would fail for files that contained lines longer than 8kB.
  76. * Some junit formatters incorrectly assumed that all testcases would
  77. inherit from junit.framework.TestCase.
  78. * <fixcrlf> dropped the first characters from Mac files.
  79. Other changes:
  80. --------------
  81. * Selector Elements now provide a way to create filesets based on
  82. sophisticated selection criteria.
  83. * Gzip and Bzip2 files can now be constructed in the fly when using
  84. the tar task without having to create the intermediate tar file on
  85. disk. The Untar task can also untar GZip and BZip2 files on the fly
  86. without creating the intermediate tar file.
  87. * New optional type, <classfileset> added.
  88. * <ejbjar> now allows control over which additional classes and interfaces
  89. are added to the generated EJB jars. A new attribute "dependency" can be
  90. defines which classes are added. The addition of classes now uses
  91. the Jakarta-BCEL library rather than reflection, meaning bean classes are
  92. no longer loaded into Ant's JVM.
  93. * <available> has a new attribute named ignoreSystemClasses.
  94. * New task <cvschangelog/> generates an XML report of changes that occur
  95. on CVS repository.
  96. * New filter readers: ClassConstants, ExpandProperties, HeadFilter,
  97. LineContains, LineContainsRegExp, PrefixLines, ReplaceTokens,
  98. StripJavaComments, StripLineBreaks, StripLineComments, TabsToSpaces,
  99. TailFilter.
  100. * <copy>, <loadfile>, <loadproperties>, <move> support FilterChains
  101. of FilterReaders.
  102. * New task <loadproperties> to load contents of file as Ant properties,
  103. with nested <filterchain> elements.
  104. * New task <loadfile> to load a whole file into a property.
  105. * New task <echoproperties> to list your current properties to the screen
  106. or a file.
  107. * New tasks <bzip2> and <bunzip2> to pack and unpack files using the
  108. BZip2 alogrithm.
  109. * New tasks <replaceregexp>, <checksum>, <translate>, <waitfor>,
  110. <manifest>, <vsscp>, <vssadd>, <vsscreate>, <splash>, <basename>, <dirname>,
  111. <concat>.
  112. * A new combined <mail> task, which replaces the old <mail> and
  113. <mimemail> tasks, has been added. The <mimemail> task, and
  114. old SendEmail and MimeMail classes have been deprecated.
  115. * Mail task allows specification of port number.
  116. * Users can control what <zip> and <jar> must do when duplicate files
  117. are found. A new element <zipgroupfileset> allows for multiple zip
  118. files to be merged into the archive. In addition, <jar> also has
  119. another new attribute: filesetmanifest. The existing manifest
  120. attribute of <jar> now also accepts the name of a jar added through
  121. a fileset.
  122. * gzip now checks that the zipfile is older than the source file
  123. before rebuilding the zipfile.
  124. * TarFileset takes in three new attributes - fullpath, prefix
  125. and preserveLeadingSlashes.
  126. * <move> attempts to rename the directory, if everything inside it is
  127. included, before performing file-by-file moves. This attempt will
  128. be done only if filtering is off and if mappers are not used. This
  129. is a performance improvement and there is no change otherwise in
  130. the funtionality of this task.
  131. * Exec task has extra attribute "resultproperty" to get the return code
  132. into a property.
  133. * Exec task prints a message when a timed-out process is killed.
  134. * Added optional attributes - name, arch and version to the <os> task.
  135. * Unjar, Untar, Unwar and Unzip now support patternsets to
  136. select files from an archive for extraction. Filesets may be
  137. used to select archived files for unarchival.
  138. * Javac task allows debug levels to be specified. Debug levels
  139. will have an effect only when the modern compiler or the
  140. classic compiler (version 1.2 and higher) is used and debugging
  141. is enabled.
  142. * Added support for specifying CVS_RSH in the <cvs/> task
  143. * The attributes zipfile, jarfile, warfile and earfile (from the Zip,
  144. Jar, War and Ear tasks) have been deprecated and superseded by a
  145. new attribute "destfile".
  146. * Added new conditions <isset>, <checksum>, <http>, <socket>, <contains>,
  147. <filesmatch>.
  148. * <taskdef> and <typedef> will now emit a warning if a task/type of
  149. the given name already exists.
  150. * A new revision of VAJ tasks: The most important new feature
  151. is the ability to execute VAJ tasks from the command line by
  152. exploiting the Remote Tool Access feature of VAJ.
  153. * Improved support for Novell NetWare.
  154. * Added an optional encoding attribute to <fixcrlf>.
  155. * <apply> has a new attribute relative that allows users to pass the
  156. filenames as relative instead of absolute paths on the command line.
  157. * References can now be copied into the child build by <ant> and
  158. <antcall> using nested <reference> elements or the new inheritRefs
  159. attribute.
  160. * <fail> now supports builds to fail based on conditions via if and
  161. unless attributes.
  162. * Ant now comes with two new BuildLogger implementations - one that
  163. can send emails containing a log of the build process (MailLogger),
  164. and one that colorizes the output based on message levels, using
  165. ANSI color code escape sequences (AnsiColorLogger).
  166. * A "package" mapper type has been added to allow package directory
  167. names replaced with the dotted form.
  168. * You can now specify environment variables in the <java> and <junit> tasks
  169. if the fork attribute has been set to true.
  170. * -propertyfile command-line option has been added to load an entire
  171. property file just as -D properties are declared (as user properties).
  172. -D properties take precedence over -propertyfile specified ones.
  173. * You can now set an ANT_ARGS environment variable to hold arguments you
  174. always want passed to the 'ant' command -- for example, if you always
  175. want to use a different logger or the -find flag.
  176. * <tstamp> now supports a new "prefix" attribute to prefix properties set.
  177. * You can now specify the -sourcepath for <javac> explicitly.
  178. * <javac> now supports a new "listfiles" attribute to list the source
  179. files it's handing off to the compiler.
  180. * The compiler implementation for <javac> can now be chosen on a task by
  181. task basis. The new "compiler" attribute of <javac> can be used to override
  182. the value of the build.compiler property, if set.
  183. * <javac> has a new nested element, <compilerarg>, which allows you
  184. to specify additional args for the specific compiler you're using.
  185. * <javac>'s "source" attribute is now enabled for jikes as well.
  186. * <propertyfile>'s <entry> now has a 'unit' attribute to specify the
  187. increment/decrement unit on date operations.
  188. * <property> now supports a 'prefix' attribute when loading from a file
  189. or resource.
  190. * In Ant 1.4, a feature has been added to the <junit> task that would
  191. add ant.jar, optional.jar and junit.jar implicitly to the classpath -
  192. this feature can now be disabled by setting the new includeantruntime
  193. attribute to false.
  194. * <style> behaves differently from any other directory-based task, as it
  195. processes all files that it finds in included directories in
  196. addition to the files matched by your patterns. There is now a new
  197. attribute, 'scanincludeddirectories', to suppress this behavior.
  198. * <javadoc> now supports a <tag> nested element to provide the -tag option
  199. to the standard Java 1.4 doclet. The element is ignored when not running
  200. on Java 1.4.
  201. * <ftp> can now chmod files on a remote server that supports
  202. "site chmod", as well as set the umask before transferring files, if
  203. the server supports "site umask".
  204. * New <serverdeploy> "optional" task.
  205. * <patternset> now supports nested patternsets.
  206. * Perforce tasks now support a "failonerror" attribute (defaults to "true").
  207. * Open Source application server JOnAS support:
  208. EJB hot deploy and deploy with <serverdeploy> and <ejbjar>
  209. * Added new DirSet (<dirset>) datatype.
  210. * <path> now supports nested <dirset> and <filelist> elements.
  211. * <pathconvert> now supports nested <dirset> and <filelist> elements.
  212. * <pathconvert>'s "dirsep" and "pathsep" attributes now accept
  213. multi-character values.
  214. * <copy> task now has a 'failonerror' attribute to allow keep-going
  215. behaviour when the file to be copied is not found (defaults to "true").
  216. * <uptodate> now has a 'srcfile' attribute to allow specifying a
  217. full-path filename.
  218. * <exec>, <sql> and <java> now support append attributes to allow
  219. appending the output to an existing file.
  220. * <java> now supports a timeout attribute analog to <exec> - it is
  221. highly recommended to only use it together with fork="true".
  222. * <javadoc> now supports a source attribute to enable javadoc to
  223. handle assertions present in JDK 1.4 source code.
  224. * <replace> supports a new replacefilterfile attribute that
  225. automatically turns all properties of a given file into
  226. replacefilters.
  227. * An alias of <xslt> has been added to refer to the <style> task.
  228. * The compiler implementation for <rmic> can now be chosen on a task by
  229. task basis. The new "compiler" attribute of <rmic> can be used to override
  230. the value of the build.rmic property, if set.
  231. * <rmic> has a new nested element, <compilerarg>, which allows you
  232. to specify additional args for the specific compiler you're using.
  233. * org.apache.tools.ant.XmlLogger now is a BuildLogger, rather than just
  234. a BuildListener. It can operate in either mode successfully.
  235. * <junit> has a new attribute "showoutput". If set to true, output
  236. generated by tests will be sent to Ant's logging system as well as
  237. to the formatters (instead of sending it to the formatters
  238. exclusively).
  239. * Ant has now a pluggable way to prompt users for input, which is used
  240. by the new <input> task. IDE integrators can provide an
  241. implementation of the InputHandler interface to decouple Ant's input
  242. from the console. An implementation that gets its input from a file
  243. for unattended builds is part of Ant's distribution.
  244. For more details see docs/manual/inputhandler.html.
  245. * <patch> has a new attribute that selects the directory in which to
  246. run the command.
  247. * <javadoc> now supports two new nested elements, <fileset> and <packageset>.
  248. Changes from Ant 1.4 to Ant 1.4.1
  249. ===========================================
  250. Fixed bugs:
  251. -----------
  252. * <ant>'s antfile attribute will now also be considered an absolute path on
  253. Windows systems, if it starts with a \ and no drive specifier.
  254. * The fullpath attribute of <zipfileset> has been ignored if you used
  255. the src attribute at the same time.
  256. * The manifest file is now always placed as the second entry (after /META-INF)
  257. in generated jars. This allows the manifest to be read by JarInputStreams
  258. * Fixed bug in depend task which would fail with a NullPointerException if no
  259. dependency cache was specified.
  260. * sql task now handles REM statements correctly so that lines starying with rem
  261. but which are not comments are actually processed.
  262. * XMLLogger now uses the task's name rather than the classname
  263. * <mapper>s will now work as expected if the to pattern expands to an
  264. absolute pathname.
  265. * <javac> didn't ignore memory settings in non-fork mode
  266. * <cab> didn't split the options attribute into several command line
  267. arguments correctly.
  268. Other changes:
  269. --------------
  270. * New source attribute for <javac> to enable assertion in JDK 1.4
  271. * XmlLogger and <antstructure> now add an encoding declaration to the
  272. XML files they generate.
  273. * <fileset> has a new attribute "casesensitive" to make it match
  274. filenames in a case insensitive way (if you set it to false) - by
  275. default filesets remain case sensitive.
  276. Changes from Ant 1.3 to Ant 1.4
  277. ===========================================
  278. Changes that could break older environments:
  279. --------------------------------------------
  280. * JUnitReport now uses the xalan redirect extension for multi-output.
  281. With Xalan 1.2.2 it forces the use of bsf.jar in the classpath.
  282. (Available in the xalan distribution). It is recommended to switch
  283. to Xalan 2.x that do not need it.
  284. * Zip.setWhenempty() has changed its signature.
  285. * <rmic> is now implemented using a factory. This makes extending
  286. rmic to use a new compiler a lot easier but may break custom
  287. versions of this task that rely on the old implementation.
  288. * several Zip methods have changed their signature as we now use a Zip
  289. package of our own that handles Unix permissions for directories.
  290. Furthermore <zip> will now use the platform's default character
  291. encoding for filenames - this is consistent with the command line
  292. ZIP tools, but causes problems if you try to open them from within
  293. Java and your filenames contain non US-ASCII characters. Use the new
  294. encoding attribute of the task and set it to UTF8 to get the old
  295. behavior.
  296. * The <pvcs> task has been moved to a package of its own.
  297. * JUnitResultFormater has two additional methods that must be
  298. implemented by custom formatters.
  299. * Ant will no longer use the canonical version of a path internally -
  300. this may yield different results on filesystems that support
  301. symbolic links.
  302. * The output generated by the xml formatter for <junit> has changed
  303. again, it doesn't format the numeric value in the time attribute anymore.
  304. * Pattern matching rules have changes slightly, the pattern foo*
  305. doesn't match files contained in a directory named foo - use foo/*
  306. instead.
  307. * <fixcrlf> will not remove trailing whitespace at the end of lines anymore.
  308. * The Classloader usage has been changed for the taskdef, property, available
  309. and sql tasks so that it delegates to the parent classloader. This may cause
  310. ClassNotFoundExceptions to be thrown if a system class attempts to load a
  311. class in the taskdef's classpath (typically factory objects).
  312. * Ant now allows multithreading of tasks and the containment of tasks within
  313. other tasks. This can break customer listeners which do not expect messages
  314. from a task before the previous task has finished.
  315. * Ant now installs its own ouput stream into System.out to route output to the
  316. task currently executing on the current thread. This also means that all
  317. output is now routed as Ant message events. Customer listeners and loggers
  318. should not call System.out at any time. This has always been true but such
  319. usage now will cause problems due to possible recursion.
  320. * Invalid manifest files will now cause build failures in the <jar> task.
  321. * Ant Introspection now looks for methods with method names starting with
  322. addConfigured. When called these methods are passed an argument after it has
  323. been configured from the build file. Custom tasks supporting nested elements
  324. starting with the name configured will no longer function.
  325. * The environment variable JAVACMD that can be used to specify the
  326. java executable to Ant's wrapper scripts must not contain additional
  327. command line parameters any longer - please use the environment
  328. variable ANT_OPTS for such parameters now.
  329. * Ant's wrapper scripts now quote the CLASSPATH environment variable, thus
  330. supporting classpaths which refer to directories containing spaces. This means
  331. that the CLASSPATH environment variable cannot have quotes. Any quotes should
  332. be removed. This will not affect the operation of the CLASSPATH environment
  333. variable in other contexts.
  334. * A delete task like
  335. <delete includeEmptyFilesets="true">
  336. <fileset dir="somedir" />
  337. </delete>
  338. will now remove "somedir" as well, unless there are still files left
  339. in it (matched by the default excludes).
  340. * The copy task will now fail if the file to be copied is not found.
  341. * Ant properties defined in properties files now behave the same way as
  342. properties defined in the build file. In particular the $ character needs
  343. to be escaped in property values by doubling it to $$. So, to define a
  344. property with the value $hello, you need to define it in a properties file
  345. as
  346. test.prop=$$hello
  347. This was not the case in Ant 1.3
  348. Other changes:
  349. --------------
  350. * New tasks: ear, p4counter, record, cvspass, vsscheckin, vsscheckout,
  351. typedef, sleep, mimemail, set of tasks for Continuus/Synergy, dependset,
  352. condition, maudit, mmetrics, jpcoverage, jpcovreport, jpcovmerge
  353. * Ant now uses JAXP 1.1
  354. * rmic now supports Kaffe's and Weblogic's version of rmic.
  355. * new magic property build.rmic to chose the rmic implementation
  356. * <tar> will now add empty directories as well
  357. * you can now specify a description for <p4change>
  358. * <touch> can now work on <fileset>s
  359. * <uptodate> now supports a value attribute
  360. * <fail> supports nested text
  361. * <fixcrlf> won't override files that are already in the correct
  362. format.
  363. * <sql> now supports REM comments as well as // and --
  364. * <jar> now has a nested <metainf> element following the same idea as
  365. <war>'s <webinf>.
  366. * <pvcs> can now handle multiple projects.
  367. * <available> now has a "type" attribute you can use in conjunction
  368. with the "file" attribute to specify whether the "file" you're
  369. looking for is a file or a directory.
  370. * New <junit> formatter named "brief"
  371. * <ejbjar> changes
  372. * Add support for Borland Application Server to the <ejbjar> task using
  373. a <borland> nested element.
  374. * Add support for iPlanet Application Server to the <ejbjar> task. Also
  375. includes some iPlanet utility tasks
  376. * Add support for JBoss Application Server to the <ejbjar> task.
  377. * Add a naming attribute to control the naming scheme that
  378. ejbjar uses to name the generated EJB jars.
  379. * Weblogic element now sets the compiler class for EJB 2.0 beans
  380. * <dtd> elements can be specified at the <ejbjar> level for building generic
  381. beans
  382. * <dtd> elements can now be URLs
  383. * Allow the manifest to be specified for the generated jars
  384. * The weblogic element now supprts an attribte noEJBC to skip the processing
  385. of the jar by ejbc. The ejbc step will then occur at deployment
  386. * weblogic will tell ejbc to use Jikes compiler if build.compiler is set to
  387. jikes. It can be restored to the default, javac, operation if desired.
  388. * Allow the <sql> Delimiter to be set in the so that Oracle stored procs may be
  389. entered
  390. * <execon> and <apply> can now optionally skip empty filesets.
  391. * <javadoc> has a new useexternalfile attribute that makes it use a
  392. temporary file for sourcefile and package names - helps to defeat
  393. command line length limitations.
  394. * Data types like <path> can now be defined inside of <target>s
  395. * you can now specify a classpath for <style> - the XSLZ processor
  396. will be loaded from this path
  397. * added a force attribute to <style> to support dependencies that the
  398. task cannot determine itself (dependency on parameters, not file
  399. modification times for example)
  400. * added vmlauncher attribute to exec tasks. This defaults to true. If
  401. it is set to false, the VM's ability to launch commands in bypassed
  402. and the OS shell, either directly or through the auxillary antRun
  403. scripts is used.
  404. * regexp mapper now supports the java.util.regex package of JDK 1.4.
  405. * New filesonly attribute for <zip> and friends to suppress directory
  406. entries.
  407. * New update attribute for <zip> and friends - update an existing
  408. archive instead of creating a new one.
  409. * <apply> and <execon> have been merged into a single task.
  410. * added vssver.scc to the default excludes
  411. * <available> has a new filepath attribute/nested element that allows
  412. you top search for a file in a given path.
  413. * <junit> can now optionally set a property on test failure.
  414. * <taskdef> can now define several tasks at once, reading the
  415. name/classname pairs from a property file or resource.
  416. * <unzip/unjar/unwar> and <untar> now have an overwrite attribute that
  417. defaults to true. If set to false, files that are newer than the
  418. files in the archive will not be replaced.
  419. * <patternset> and <fileset> now support nested <in/excludesfile>
  420. elements - using these you can have more than one in/excludes file
  421. per <patternset>.
  422. * Three new supported compilers for javac: kjc for kopi, gcj for the
  423. gcc frontend and sj for Symantec's compiler.
  424. In addition extJavac or the new fork attribute can be
  425. used to run the JDK's javac in a JVM separate from Ant.
  426. * <fixrlf> can now with CR only line-ends and can use an arbitraty
  427. between 2 and 80.
  428. * The .NET tasks have been adapted to the beta2 release of the framework.
  429. * <move> will now try to rename() files before copying them byte by
  430. byte - only if filtering is of, of course.
  431. * <ant> and <antcall> tasks now support a new attribute inheritAll. When set to
  432. false, only user properties are passed through to the target Ant instance.
  433. This includes properties set on the command line and properties explicitly
  434. passed
  435. * <javadoc> now skips off line links if the package list cannot be found.
  436. * <wlrun> now allows the security policy file to exist outside the weblogic
  437. directory.
  438. * <java> task will set the Thread contextClassLoader under JDKs 1.2+ to the
  439. classloader for the class being executed.
  440. * Introduce the concept of a TaskContainer - a task or element which can contain
  441. Ant Tasks.
  442. * Add new tasks implementing the TaskContainer interface <parallel> and
  443. <sequential> which allow parallel execution of tasks to be specified.
  444. * <depend> task will now take into account dependencies on jar files and class
  445. files from a given classpath.
  446. * <jar> manifest entries may now be specified in the build file either
  447. completely or to be merged with a manifest file.
  448. * <tstamp> task custom formats now support locales.
  449. * Added a listner which will forward events to Log4J. The log4j configuration
  450. file should be in the directory from which Ant is run or passed as a system
  451. property using a JVM argument.
  452. * Introduced the concept of <filtersets> to allow for more control in which
  453. filters get applied in a <copy> or <move> operation.
  454. * Added nowarn attribute to javac and deprecated the Jikes-magic property
  455. build.compiler.warnings.
  456. * The <depend> task cache format has changed and all dependency information is
  457. now stored in a single file.
  458. Fixed bugs:
  459. -----------
  460. * Testcases have been made independent of current working directory.
  461. * Input ZIP-Files will be closed when using a <zipfileset>.
  462. * p4 tasks now don't fail if user, port or client have been omitted
  463. (and this is acceptable for the context of the command).
  464. * <javah>'s outputfile attribute will be resolved as relative to the
  465. projects basedir.
  466. * <antstructure> should create a valid DTD for propertyfile.operation.entry
  467. and omit tasks it fails to load.
  468. * won't try to pass a -bootclasspath flag to javac 1.1 anymore
  469. * <style>'s style attribute no handles absolute paths correctly.
  470. * <delete includeemptydirs="true"> now deletes more than just the leaf
  471. directories.
  472. * You can now specify a <fileset> for a directory that doesn't exist at
  473. declaration time but will created before the fileset gets used for the
  474. first time.
  475. * If the quiet attribute has been set, <delete> will handle <fileset>s
  476. with non-existing directories gracefully.
  477. * Output written by testcases will now be captured by the <junit> task
  478. and passed to the formatters.
  479. * Quote the -group parameter to Javadoc as per the specification
  480. * Initialise classes when loaded through the AntClassLoader - that is, run
  481. static initializers
  482. * Implement getResource() and getResources() in AntClassLoader
  483. * Create the <ejbjar> weblogic command line as a set of arguments rather than
  484. as a single line. Avoids problems with paths which contain spaces.
  485. * <ejbjar> now fails when the weblogic ejbc compiler reports an error.
  486. * Make the AntClassLoader load resources in the same order as it currently
  487. loads classes.
  488. * Handle classpaths with spaces
  489. * Make sure XSLT processors close their output files in <style>.
  490. * perform proper uptodate check in <rmic> when compiling for IIOP.
  491. * <jjtree>'s uptodate test works even if outputdirectory is not the
  492. parent dir of target
  493. * <copy> will remove target file (if it exists) before writing to it -
  494. this avoids problems with links on filesystems that support them.
  495. * <ftp> now properly recurses remote directories.
  496. * <ftp> closes remote connection when it's done.
  497. * <junit> tries to include all necessary classes for the task itself
  498. to the classpath when running in fork mode - doesn't work for JDK 1.1
  499. * <apply> and <execon> do now execute the command only once, if you
  500. specify the parallel attribute - instead of once per fileset.
  501. * directory based tasks and fileset could miss some included files in
  502. directories that have been excluded
  503. * <fixcrlf> failed for large files.
  504. * <move> removed files you tried to move to themselves.
  505. * <sql> task will not trty to print the result set unless the query succeeded.
  506. * Ant classloader will now ignore paths which are invalid relative to the
  507. project base
  508. * <ejbjar> weblogic elements check for jar file changes has been fixed.
  509. Previously some changes would not be included.
  510. * properties loaded from properties files are now resolved internally. This
  511. removes the spurious warnings about usage of properties which have not been
  512. set.
  513. * <jar> task and friends now process the JAR manifest to ensure it is valid.
  514. * The task finished event now includes any exception thrown by the task.
  515. * <java> task now supports a jvmVersion attribute so that if another JVM is
  516. being used, Ant can determine which options to use for features such as the
  517. VM memory limits
  518. Changes from Ant 1.2 to Ant 1.3
  519. ===========================================
  520. Changes that could break older environments:
  521. --------------------------------------------
  522. * Ant doesn't search for the buildfile anymore, unless you use the new
  523. -find argument.
  524. * <perforce> has been replaced by a number of new tasks.
  525. * <javac> is now implemented using a factory. This makes extending
  526. javac to use a new compiler a lot easier but may break custom
  527. versions of this task that rely on the old implementation.
  528. * The output generated by the xml formatter for <junit> has changed a
  529. little, it doesn't append " sec" in the time attribute anymore.
  530. Other changes:
  531. --------------
  532. * A GUI Frontend: Antidote. This is currently in development. At this
  533. time, this is not part of the Ant release, although the source is
  534. included if you are interested.
  535. * New tasks: stylebook, propertyfile, depend, antlr, telnet, csc,
  536. ilasm, apply, javah, several clearcase tasks, junitreport, sound
  537. * Added output attribute to <java>.
  538. * Added nested zipfileset element to <zip>
  539. * Changed <sql> so that printing is at the task level rather than
  540. the statement level.
  541. * javadoc task will pass -d flag to any doclet if the destDir attribute is
  542. given. If the doclet does not accept the -d flag then omit the destdir
  543. attribute.
  544. * <cab> can work on non-Windows platforms with the help of libcabinet.
  545. See http://trill.cis.fordham.edu/~barbacha/cabinet_library/.
  546. * <ftp> now supports passive mode.
  547. * New <mapper> data type that can be used to get influence on the
  548. target files for some tasks like <copy> or enable new types of tasks
  549. like <apply>.
  550. * <execon> provides more control over the command line now, the names
  551. of the source files are no longer required to be at the end of the
  552. command.
  553. * Style tasks will now support TraX compliant XSL processors if one is present
  554. in your classpath.
  555. * Added a failonerror to the javac task. If set to false, the build will
  556. continue even if there are compilation errors.
  557. * Added nested format elements to the tstamp task allowing additional time
  558. formats to be defined for arbitrary properties.
  559. * Added classpath attribute and nested classpath element to <property>
  560. to make the resource attribute more powerful.
  561. * ${} property expansion will now be performed on the patterns read
  562. from files specified as includesfile or excludesfile attributes.
  563. * The <tar> and <untar> tasks now support GNU format for handling paths
  564. which are greater than 100 characters in length. In addition the <tar>
  565. task now supports nested filesets through which the file permissions
  566. may be controlled.
  567. * wlrun, wlstop and ejbjar now support Weblogic 6.0
  568. * The MPasre task has been updated to work with MParse 2.0
  569. * The documentation has been significantly updated.
  570. Fixed bugs:
  571. -----------
  572. * <signjar> doesn't use deprectated methods anymore.
  573. * javadoc's failonerror attribute works again
  574. * javadoc's additionalparam attribute will now be split into separate
  575. parameters (on spaces) to allow for more than one parameter.
  576. * Changed <sql> task so that printing result sets works on Oracle
  577. * Changes to ddcreator and ejbc helper to respect the descriptor hierarchy
  578. keppgenerated in ejbc can now be turned off
  579. * ejbjar now correctly ignores <ejb-ref> elements in the deployment descriptor.
  580. CMP files are included by parsing the weblogic deployment descriptor rather
  581. than relying on the naming convention used in ant 1.2
  582. * ejbjar includes super classes and super interfaces into the generated ejb
  583. jar files. The <support> nested element allows support classes to be
  584. included in the EJB jar. The toplink element should now correctly locate
  585. the toplink descriptor.
  586. * <vssget> now correctly deals with spaces in arguments
  587. * <jar> fails early if a given manifest file doesn't exist
  588. * <rmic> doesn't search for the _Skel file anymore when stubversion is
  589. set to 1.2.
  590. * <rmic> uses the the same classpath to verify a class can be rmic'd
  591. as it passes to the compiler.
  592. * org.apache.tools.mail.MailMessage (and therefore <mail>) can now
  593. handle SMTP servers sending multi line responses.
  594. * nested <classpath> elements of <taskdef> now work for <taskdef>s not
  595. nested into <target> as well.
  596. * <property> and <available> will search for the resource "foo" instead
  597. of "/org/apache/tools/ant/taskdefs/foo" when given a relative resource
  598. name foo.
  599. * Handle build files in directories whose name contained a "#" character
  600. * <junit> can now log to files whose name contains a comma as well.
  601. * The AntClassLoader now refers to the loader which loaded it, any
  602. requests it does not handle itself. Previously these went to the
  603. primordial loader.
  604. Changes from Ant 1.1 to Ant 1.2
  605. ===============================
  606. Changes that could break older environments:
  607. --------------------------------------------
  608. * Semantics of <property> has changed again in the hope to be more
  609. intuitive. ${} expansion now happens at runtime and <property> tags
  610. living inside of targets only take effect if they are visited at
  611. runtime.
  612. As a side effect of this change, task's attributes get set at runtime
  613. not at parser time as well, which might change the results of
  614. <script>s or other custom tasks that reference other tasks by their id
  615. attribute.
  616. * copying of support files in <javac> has been removed - as well as
  617. the filtering attribute.
  618. * the <expand> and <keysubst> tasks have been removed.
  619. * the ignore and items attributes of directory based tasks have been removed.
  620. * the command line switches _not_ starting with - have been removed.
  621. * Path and EnumeratedAttribute have been moved from
  622. org.apache.tools.ant to org.apache.tools.ant.types.
  623. * the class attributes of <available>, <java>, <rmic> and <taskdef>
  624. have been removed.
  625. * the src attribute of <chmod> has been removed.
  626. * <patch> and <javadoc> have lost some of their attributes.
  627. * <java> and <cvs> have lost some undocumented attributes.
  628. * the Unix antRun script would search for command.sh in the directory
  629. it changed to and invoke this instead of command if present. This
  630. behavior has been dropped.
  631. * <ejbjar> task syntax has been changed significantly
  632. * <exec> is no longer implemented by org.apache.tool.ant.taskdefs.Exec.
  633. Custom tasks that rely on Project.createTask("exec") to return an
  634. instance of this class are going to fail.
  635. * nested <include> and <exclude> elements expect the value of their
  636. name attribute to be a single pattern, they don't accept multiple
  637. patterns anymore. Split them into multiple elements of the same type.
  638. * <delete dir="somedir" /> will now delete the directory itself as
  639. well as all included files. If you just want to clean out the
  640. directory and keep the empty one, use a nested fileset.
  641. Other changes:
  642. --------------
  643. * New tasks: antstructure, cab, execon, fail, ftp, genkey, jlink,
  644. junit, sql, javacc, jjtree, starteam, war, unwar, uptodate,
  645. native2ascii, copy, move, mparse.
  646. * copydir, copyfile, deltree and rename are now deprecated. They
  647. should be replaced with the new copy, delete and move tasks.
  648. * <java> uses a ClassLoader of its own in no-fork mode if a classpath is
  649. specified.
  650. * <style> will create the necessary target directories and reprocess
  651. all files if the stylesheet changes.
  652. * New data types fileset and patternset - expected to get a broader use.
  653. They, as well as PATH like structures, can now be defined on a global
  654. level and later be referenced by their id attribute.
  655. * You can specify environment variables to <exec>.
  656. * <get> can check whether a remote file is actually newer than a local
  657. copy before it starts a download (HTTP only).
  658. * Added a -logger option to allow the class which performs logging to be
  659. specified on the command line.
  660. * Added a -emacs option to tell the logger to leave out taskname adornments
  661. on log output.
  662. * <chmod> works on all files in parallel and supports multiple filesets.
  663. * <replace> can now use tokens and/or values that cross line boundaries.
  664. * build.compiler supports now jvc as well.
  665. * project specific help can now be obtained with the -projecthelp option.
  666. * Added a -debug option to make -verbose less verbose (and more useful)
  667. * Ant will now search for a file named build.xml in the parent directory
  668. and above (towards the root of the filesystem) if you didn't specify
  669. -buildfile and there is no build.xml in the current directory.
  670. * <echo> can now write to a file and accepts nested text.
  671. Fixed bugs:
  672. -----------
  673. * <chmod> didn't work when used as a directory based task.
  674. * Path, Available, Property didn't resolve relative filenames with
  675. respect to the Project's basedir.
  676. * Project didn't interpret the basedir attribute correctly in all
  677. cases.
  678. * Nested <src> in <javac> caused NullPointerException.
  679. * Corrupt Zip- and Jar-files ar now deleted if the task fails.
  680. * many more fixes we've forgotten to document here ...
  681. * The packagelistloc attribute of <javadoc>'s <link> child will be
  682. resolved as a file (i.e. it is either absolute or relative to
  683. basedir).