--- Mike Kaufman <[EMAIL PROTECTED]> wrote: > > I need to have a single ant target do multiple javac tasks, > > some of which use JDK 1.4, others that use JDK 1.3. Setting > > the "build.compiler" property did not seem to work for me.
I think you'd need to break your single target into separate targets -- one for the 1.3 stuff and one for the 1.4 -- then use <antcall>, passing build.compiler (or maybe java.home? -- I only have 1.3 and jikes, so I can't say for sure) as a <param>. > > Moreover, it isn't clear to me what this build.compiler > > setting is really doing. build.compiler says which compiler to use -- see the choices on the Javac page in the doc. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
