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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Changes from Ant 1.1 to the current sources
  2. Changes that could break older environments:
  3. --------------------------------------------
  4. * copying of support files in <javac> has been removed.
  5. * the command line switches _not_ starting with - have been removed.
  6. * Path and EnumeratedAttribute have been moved from
  7. org.apache.tools.ant to org.apache.tools.ant.types.
  8. * the class attribute of <java> has been removed.
  9. * <patch> has lost some of its attributes.
  10. * <java> and <cvs> have lost some undocumented attributes.
  11. Other changes:
  12. --------------
  13. * New tasks: sql, junit, mparse, execon. All except sql pending
  14. documentation, most of them pending review.
  15. * <java> uses ClassLoader of its own in no-fork mode if a classpath is
  16. specified.
  17. * <style> will create the necessary target directories and reprocess
  18. all files if the stylesheet changes.
  19. * New data types fileset and patternset - expected to get a broader
  20. use, pending documentation.
  21. * You can specify environment variables to the exec task - pending
  22. documentation.
  23. * Get can check whether a remote file is actually newer than a local
  24. copy before it starts a download (HTTP only).
  25. * Added a -logger option to allow the class which performs logging to be
  26. specified on the command line.
  27. * Added a -emacs option to tell the logger to leave out taskname adornments
  28. on log output.
  29. * <chmod> works on all files in parallel and supports multiple filesets.
  30. Fixed bugs:
  31. -----------
  32. * <chmod> didn't work when used as a directory based task.
  33. * Path, Available, Property didn't resolve relative filenames with
  34. respect to the Project's basedir.
  35. * Project didn't interpret the basedir attribute correctly in all
  36. cases.