Walter Heestermans/TMME is out of the office.

2007-12-20 Thread Walter . Heestermans
I will be out of the office starting 21/12/2007 and will not return until 24/12/2007. I will respond to your message when I return. For urgent issues, contact WebSphere Support group. - To unsubscribe, e-mail: [EMAIL PROTECTED

Multiple Platform JNI code

2007-12-20 Thread csbrian
I am developing an application that I would like to run on multiple platforms. I am using JNI with the jogl libraries. When, I build and run using ant, I currently have all my native libraries in one directory and specify java.library.path through ant. However, for 32/64bit libraries I need to

Re: Duplicate target execution

2007-12-20 Thread Chuck Holzwarth
Your command line is running each target in turn. If you use ant deploy build You should see Building Deploying Building I think the command line you want is ant deploy Gregg Freeman <[EMAIL PROTECTED]> wrote: I'm using Ant 1.7.0 (on Windows Vista) with Java 1.5.0_12. I'm having a problem whe

Duplicate target execution

2007-12-20 Thread Gregg Freeman
I'm using Ant 1.7.0 (on Windows Vista) with Java 1.5.0_12. I'm having a problem where the same target in an ant script gets executed multiple times. Using this tiny script as an example: When I run: ant build deploy I get the following output: Buildfile: testBuild.xml bui

AW: AW: extended parallelism

2007-12-20 Thread Jan.Materne
> I am interested to know why is it desirable to have the parallel > executor work on unmodified build XML files. Because its easier to use. Dont forget - this executor is not the default one. Jan - To unsubscribe, e-mail: [EM

RE: AW: extended parallelism

2007-12-20 Thread Prashant Reddy
On Thu, 2007-12-20 at 13:45 +0100, Gilles Scokart wrote: > > As I mentioned earlier the only road-block at the moment to a totally > > transparent mechanism for > > supporting parallel execution is the dubious implicit dependencies that the > > documentation for the > > "depends" attribute makes

RE: AW: extended parallelism

2007-12-20 Thread Gilles Scokart
> -Original Message- > From: Robin Chaddock [mailto:[EMAIL PROTECTED] > Sent: mercredi 19 décembre 2007 15:42 > To: Ant Users List > Subject: Re: AW: extended parallelism > > The target "depends" attribute already gives all the information you need to > be able to determine > which targ

AW: Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread Jan.Materne
-lib is used to extends Ants own classpath so that it can find additional task libraries. For defining 3rd party libraries of your project (like j2ee.jar, servlet.jar, ...) you should provide a in the compile task. ... Jan > -Ursprüngliche Nac

Re: Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread MattyN
That sorted it. I used the -lib option in ant. Thanks again for the quick reply. I think I was barking up the wrong tree. MattyN wrote: > > Thanks for that - will give it a go. We have everything running fine on > XP but I think this is due to J2EE being in the classpath before ant runs. >

Re: Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread MattyN
Thanks for that - will give it a go. We have everything running fine on XP but I think this is due to J2EE being in the classpath before ant runs. Thanks. foamdino wrote: > > Hi > >> We're running OC4J 10.1.2 which obviously runs J2EE 1.4. I need to be >> able to >> build with J2EE on a mac

Re: Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread Kevin Jackson
Hi > We're running OC4J 10.1.2 which obviously runs J2EE 1.4. I need to be able to > build with J2EE on a mac but can't work out how to install and then > subsequently reference J2EE 1.4 when building the app. We're using an ant > task to build the app. I get lots of errors saying that HttpServlet

RE: Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread Bizard Nicolas (KIRO 41)
Not so sure about which jar contains the HttpServletRequest, but probably servlet.jar and not j2ee.jar So you have to include the proper server libs (which contain the HttpServletRequest implementation in a jar) on the path Nicolas -Original Message- From: MattyN [mailto:[EMAIL PROTECTED

Building a J2EE 1.4 app using ant on OS X

2007-12-20 Thread MattyN
We’re running OC4J 10.1.2 which obviously runs J2EE 1.4. I need to be able to build with J2EE on a mac but can’t work out how to install and then subsequently reference J2EE 1.4 when building the app. We're using an ant task to build the app. I get lots of errors saying that HttpServletRequest can

Re: AW: AW: AW: extended parallelism

2007-12-20 Thread Klaus Malorny
[EMAIL PROTECTED] wrote: you'll get the following dependencies among the _tasks_: taskb1: -none- taskb2: taskb1 taskb3: taskb1 where is ? Just for annotating? taskb1 : -none- parallel: taskb1 and the execution of 'parallel' would be taskb2: - none- taskb3: t