RE: Jikes and ANT's optional ejbc task (was: external compiler task)

2001-07-26 Thread Conor MacNeill
ANT's optional ejbc task (was: external compiler > task) > > > Niels and Conor: thanks for your reply! > > But... (there's always a "but", ain't there?!? ;-) > > We're (still!) using Weblogic 4.5.1, and hence are > stuck on the "ddcreator&q

RE: Jikes and ANT's optional ejbc task (was: external compiler task)

2001-07-25 Thread Peter Vandenberk
it appears that the "ejbjar" task is the only one that formally supports the "compiler" option... or is it? Thanks, Peter -Original Message- From: Conor MacNeill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 1:59 PM To: [EMAIL PROTECTED] Subject: Re: Jike

external compiler task

2001-07-25 Thread Uwe Guenther
Hello, I use netbeans 3.2 with built in ant support. The problem is that netbeans runs only under jdk 1.3 and I have to develop under jdk1.4.0-beta. The built-in Ant is therefor started under jdk 1.3.1. So if I start an javac task, Ant compiling my sources with jdk 1.3 compiler. Is there a other

Re: Jikes and ANT's optional ejbc task (was: external compiler task)

2001-07-25 Thread Conor MacNeill
From: "Peter Vandenberk" <[EMAIL PROTECTED]> > I have a question related to this: we're already using jikes to do the bulk > of our Java compilations in ANT builds, but now we want to make ejbc, > Weblogic's EJB compiler, use jikes as well... > > In our makefiles, we were leveraging ejbc's "compil

Re: external compiler task

2001-07-25 Thread Uwe Guenther
Hello Peter, I read it, but like Stefan writes I need a fork task or better a global flag at the beginning of the build.xml to turn ant from jdk 1.3 to jdk 1.4, but I think this is inpossible because the design of ant. -- Thanks Uwe Peter Donald wrote: > > On Wed, 25 Jul 2001 04:46, Uwe Gu

Re: external compiler task

2001-07-25 Thread Uwe Guenther
Hello, now I use an external Task in the NB IDE with a costumized ant shell script, where I set the environment hard wired. There was some more problems than only javac, e.g. java, jar, signjar. So if I use the hard wired environment with JDK1.4.0-beta my problems are gone. I am still waiting f

RE: Jikes and ANT's optional ejbc task (was: external compiler task)

2001-07-25 Thread Niels Verdonk
Hi, Using jikes we managed to bring our full buildtime down from 75mins to 9mins After that we started to use the depend task to do an incremental build which sped up development even more: > I have a question related to this: we're already using jikes > to do the bulk > of our Java compila

Re: external compiler task

2001-07-25 Thread Stefan Bodewig
On Tue, 24 Jul 2001, Uwe Guenther <[EMAIL PROTECTED]> wrote: > So if I start an javac task, Ant compiling my sources with jdk 1.3 > compiler. Apart from using jikes and setting includejavaruntime to false and adding the rt.jar of jdk 1.4 to this tasks classpath - no. Once gains a fork attribut

Jikes and ANT's optional ejbc task (was: external compiler task)

2001-07-24 Thread Peter Vandenberk
ask do the same!?! I assume (I sure hope ;-) Tim Fennell ([EMAIL PROTECTED]) and Conor MacNeill ([EMAIL PROTECTED]) are on this list! ;-) Thanks, Peter -Original Message- From: Peter Donald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 10:53 PM To: [EMAIL PROTECTED] Subject: Re: ext

Re: external compiler task

2001-07-24 Thread Peter Donald
On Wed, 25 Jul 2001 04:46, Uwe Guenther wrote: > Hello, > > I use netbeans 3.2 with built in ant support. > > The problem is that netbeans runs only under jdk 1.3 and I have to develop > under jdk1.4.0-beta. The built-in Ant is therefor started under jdk 1.3.1. > So if I start an javac task, Ant c

external compiler task

2001-07-24 Thread Uwe Guenther
Hello, I use netbeans 3.2 with built in ant support. The problem is that netbeans runs only under jdk 1.3 and I have to develop under jdk1.4.0-beta. The built-in Ant is therefor started under jdk 1.3.1. So if I start an javac task, Ant compiling my sources with jdk 1.3 compiler. Is there a other