RE: War element doesn't work in 1.5.2 but does in 1.5.1

2003-04-02 Thread Mark.Gargan
No sweat. Thanks very much for your help Stefan. -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 15:12 To: [EMAIL PROTECTED] Subject: Re: War element doesn't work in 1.5.2 but does in 1.5.1 On Wed, 2 Apr 2003, Mark Gargan <[EMAIL PROTECTED]> wrote:

RE: Anyone got any workaround ideas on the broken Jaxb stuff?

2003-04-02 Thread Dominique Devienne
We recently upgraded to the 1.0 too, and saw the java.endorsed.dirs thing in the install notes, but we didn't do it, and it's fine... JAXB is not distributed stand-alone anymore, and this is probably a requirement for something else than JAXB (in JWSDP). All we have to do to generate the sources w

help with weblogic.ejbc

2003-04-02 Thread Chiah Tong Kiat
Hi Help I'm having problem with invoking task after I've called the weblogic. ejbc. Could anyone tell me why? I'm unable to invoke the ear task after that? Below is an example of what I've done.

RE: Anyone got any workaround ideas on the broken Jaxb stuff?

2003-04-02 Thread Jacob Kjome
Additionally, this post by Dominque Devienne might help a bit... http://marc.theaimsgroup.com/?l=ant-user&m=103730621918507&w=2 And here are my targets using the JAXB task ... ... ...

RE: *.java to *.class?

2003-04-02 Thread Steve Cohen
It would probably be easier to simply organize your compile so that the output .class files go to a different directory from where the .java files are. Then you simply define a fileset on that directory and use that to build your jar. -Original Message- From: Keith Hatton [mailto:[EMAIL P

Re: *.java to *.class?

2003-04-02 Thread Vilya Harvey
Be careful when doing that though: if you have any inner classes, anonymous classes, or even if you have any more than one top level class in a file anywhere in your code, the additional classes will not be picked up. The usual way to do this sort of thing is to specify an output directory for

RE: *.java to *.class?

2003-04-02 Thread Keith Hatton
Hi Todor, I think you need the element - look in the Ant docs for File Mappers. Something like Hope this helps Keith -Original Message- From: Todor Boev [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 16:59 To: Ant Users List Subject: *.java to *.class? Hello all, Assume I have a file

*.java to *.class?

2003-04-02 Thread Todor Boev
Hello all, Assume I have a fileset that contains some *.java filles. I need to compile all these java files and than put into a jar their corresponding *.class files. Is there a way to derive the list of class files from the list of java files and store it all into a fileset or a property? Bes