Re: Patternset - overriding previous definition problem

2002-05-01 Thread Stefan Bodewig
On Tue, 30 Apr 2002, Charles Meyer <[EMAIL PROTECTED]> wrote: > when it is run you receive the message "Overriding previous > definition of reference to all_class_files" which is not the case. In some way it is - but you are overriding the previous definition with itself (don't want to bore you

Re: "if" task - ant-contrib needs nightlies :-)

2002-05-01 Thread Stefan Bodewig
On Tue, 30 Apr 2002, Scott Ellsworth <[EMAIL PROTECTED]> wrote: > I suspect that the resistance to ant-contrib would be lowered if > there were a downloadable zip or gz file with the jar and the > properties neatly boxed up. Wrong list 8-) Even if two of the five people with write access to the

RE: How do I specify multiple Windows directories in one statement?

2002-05-01 Thread Eddie Bernard
how about a semicolon (;) instead of a colon (:) -Original Message- From: Tony [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 7:54 PM To: [EMAIL PROTECTED] Subject: How do I specify multiple Windows directories in one statement? Hi Folks How do I write the line below for Win

How do I specify multiple Windows directories in one statement?

2002-05-01 Thread Tony
Hi Folks How do I write the line below for Windows this time SRC1_DIR=C:\project\src1 SRC2_DIR=C:\project\src2 If I write then this is clearly wrong since Windows uses ":" in its paths names. So can someone please tell me how I write this in Widows. Cheers Tony -- To unsubscribe, e-ma

Re: Duplicate class problem : Conor MacNeill

2002-05-01 Thread Conor MacNeill
Irfan Niaz wrote: > Thanks for your reply. > > The classes in source directory are not duplicated. > > I am using > java -Dant.home=c:\javaetc\ant\jakarta-ant-1.4.1 > org.apache.tools.ant.Main -buildfile build.xml > > Message > compileMol: > [javac] Compiling 93 source files to C:\MOL\b

Duplicate class problem : Conor MacNeill

2002-05-01 Thread Irfan Niaz
Thanks for your reply. The classes in source directory are not duplicated. I am using java -Dant.home=c:\javaetc\ant\jakarta-ant-1.4.1 org.apache.tools.ant.Main -buildfile build.xml Message compileMol: [javac] Compiling 93 source files to C:\MOL\build\WEB-INF\classes [javac] C:\MOL\s

Re: 1.5 Release

2002-05-01 Thread Conor MacNeill
Irfan Niaz wrote: > Hi, > > On Build using Ant I am getting DUPLICATE CLASS error while I only have > one copy of the class. > > Any clues? > Regards, > Irfan > Um, what has this to do with the 1.5 release? Are you too lazy to create a new message with an appropriate subject? While you are

RE: 1.5 Release

2002-05-01 Thread Irfan Niaz
Hi, On Build using Ant I am getting DUPLICATE CLASS error while I only have one copy of the class. Any clues? Regards, Irfan -Original Message- From: Magesh Umasankar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 2:09 PM To: Ant Users List Subject: Re: 1.5 Release Ahem! I

RE: 1.5 Release

2002-05-01 Thread Greg Hassan
Thanks! > -Original Message- > From: Magesh Umasankar [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 01, 2002 3:09 PM > To: Ant Users List > Subject: Re: 1.5 Release > > > Ahem! It is still in its first beta though ;-) > The final release is scheduled for July 1. > > Cheers, > Magesh

Re: 1.5 Release

2002-05-01 Thread Magesh Umasankar
Ahem! It is still in its first beta though ;-) The final release is scheduled for July 1. Cheers, Magesh ** * Compromise: The art of dividing a cake in such a * * way that everybody believes others too got the* * same small size pieces

Re: 1.5 Release

2002-05-01 Thread Erik Hatcher
Yes, today! Check the Ant website. - Original Message - From: "Greg Hassan" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Wednesday, May 01, 2002 4:05 PM Subject: 1.5 Release > Hi, > > Is there a target date for Ant 1.5? > > Greg > -- To unsubscribe, e-mai

1.5 Release

2002-05-01 Thread Greg Hassan
Hi, Is there a target date for Ant 1.5? Greg

[ANN] Ant 1.5 Beta 1

2002-05-01 Thread Magesh Umasankar
The first beta for Ant 1.5 is now available: http://jakarta.apache.org/builds/jakarta-ant/release/v1.5Beta1/ I'd like the members of these lists to try out these builds and if there are no major problems in the next two days, I will send out announcements to a broader group of people. If you fin

RE: Patternset - overriding previous definition problem

2002-05-01 Thread Dominique Devienne
Well, I don't think you are doing anything wrong, I just wouldn't do it the same way ;-) By that I mean that you either define your outside with an id, and refid it from , or you define it locally inside and thus don't need to assign it an id. So I'd do either:

Re: Modern compiler - classic compiler

2002-05-01 Thread Ruben Thomas Yanas
That seemed to fix it. Thank you so much. Jay Riddell wrote: > I *think* this is caused by not having $JAVA_HOME/lib/tools.jar > in the Classpath. > > On 4/30/02 12:51 PM, "Ruben Thomas Yanas" <[EMAIL PROTECTED]> wrote: > > > > > In trying to build the j2ee tutorial, I am getting > > an error.

Re: I need help

2002-05-01 Thread Steve Loughran
- Original Message - From: "sato" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Wednesday, May 01, 2002 1:07 AM Subject: Re: I need help > Thank you so much for your reply, Sujan. > That was not "error" but "duplicate classes" > what it says about when you run ANT i

Re: accessing environment variables

2002-05-01 Thread Mike Shoemaker
Make sure you don't have two instances of ant installed on your box and the old path comes before the new one. Mike - Original Message - From: "Sharad Jain" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 7:46 PM Subject: RE: accessing environment variables O

RE: I need help

2002-05-01 Thread Sujan Digumarti
The duplicate class problem occurs if the same java file is lying at two different places in the source directory. If your not calling the build.xml in PROJECT F, then the files inside that shouldn't get compiled. I think there is a problem with build.xml files you are using for the other proj

Re: I need help

2002-05-01 Thread sato
Thank you so much for your reply, Sujan. That was not "error" but "duplicate classes" what it says about when you run ANT is this. [javac] /xxx/hoge/PROJECT F/packageName/updateMemberBean.java:16: duplicate clas s: PACKAGE A.updateMemberBean [javac] public class updateMemberBean implements