At 09:18 AM 9/7/2005, you wrote:
Basically, I've spent way too much time trying to figure out this
problem. For the
time being, I'm planning on moving on and just comment out this line...
Which line would need to be commented out?
in build.utils.xml, roughly around line 499.
<!-- Get rid of references to hackystat.admin.userkey in the junit
output files. -->
<!--
<replace dir="${report.module.dir}" token="${hackystat.admin.userkey}"
value="*ADMIN-KEY*"/>
-->
To eliminate these warnings under jdk 1.5, javac has a command line option
-source (i.e. 'javac -source "1.4"'). Ant 1.6.5 provides a 'source'
attribute to the <javac> task. What we should do is:
- require all developers to upgrade to Ant 1.6.5
- edit the <javac> target in all local.build.xml files to include
'source="1.4"'.
The intent is that we will be changing source="1.5" later on right?
thanks, aaron