Changelog for
ant-manual-1.7.0-199.1.noarch.rpm :
Mon Nov 3 13:00:00 2008 mvyskocilAATTsuse.cz
- [bnc#440645] - ant fails without installed jdk:
- added a java-devel to Recommends:
Mon Jul 21 14:00:00 2008 roAATTsuse.de
- use xerces-j2-bootstrap to build (as early as possible)
- add java doc dir to filelist of javadoc subpackage to fix build
Wed Jul 16 14:00:00 2008 cooloAATTsuse.de
- avoid another build cycle
Wed May 7 14:00:00 2008 mvyskocilAATTsuse.cz
- build using gcj, to allow a openjdk6 bootstrap
- change a source and a target level to 1.5 in build.xml
Tue Aug 14 14:00:00 2007 skhAATTsuse.de
- disable junit tests and remove junit from BuildRequires to break
circular build dependency
Fri Jul 6 14:00:00 2007 dbornkesselAATTsuse.de
- update to version 1.7.0
major changes are (for a complete list, consult /usr/share/doc/packages/ant/WHATSNEW):
Changes that could break older environments:
- ------------------------------------------
* Initial support for JDK 6 (JSR 223) scripting.
<
*script
*> tasks will now use javax.scripting if BSF is
not available, or if explicitly requested by using
a \"manager\" attribute.
* The -noproxy option which was in the previous 1.7 alpha and beta
releases has been removed. It is the default behavior and not needed.
* Removed launcher classes from nodeps jar.
*
filter reader uses ISO-8859-1 encoding to read
the java class file. Bugzilla report 33604.
* Defer reference process. Bugzilla 36955, 34458, 37688.
This may break build files in which a reference was set in a target which was
never executed. Historically, Ant would set the reference early on, during parse
time, so the datatype would be defined. Now it requires the reference to have
been in a bit of the build file which was actually executed. If you get
an error about an undefined reference, locate the reference and move it somewhere
where it is used, or fix the depends attribute of the target in question to
depend on the target which defines the reference/datatype.
*