  | |  | using jdk1.5alpha for javac | using jdk1.5alpha for javac 2004-01-23 - By Markku Saarela
Back I can 't just set my path to point to the 1.5 jdk because I have a
problem with junitreport, which appears to be a bug in xalan, so I just
want to compile with 1.5, then run my tests with 1.4.2.
You can set you path to point jdk 1.5 and then just use this
source= "1.5 " :
<javac destdir= "${build.classes.dir} "
debug= "on "
optimize= "off "
source= "1.5 "
deprecation= "on " >
<src path= "${src.dir} "/ >
<classpath refid= "compile.classpath " / >
</javac >
In order to do that you must patch latest version of xalan.jar 's file
Encodings.properties.
Just add new line to end of file. Put this xalan.jar to
\j2sdk1.5.0\jre\lib\endorsed directory and it should work.
It 's not a xalan bug it is bug in java.util.Properties.class
I filed bug report on that and it should be visible in JDC in few
working days.
Bug-ID: 4982523
synopsis : REGRESSION: Properties method load() drops end of file in a comment
description : /*
* If the last line of a properties file is a comment line,
* and if that line ends with end-of-file (no line terminator),
* then that comment line is mistakenly loaded as a property.
*
Rgds,
Markku
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)
|
|
 |