Can i include a directory path in targetfile of uptodate task

2002-04-02 Thread Abhay Kulkarni
hi all can i include a directory name in the target file of uptodate task directory src1 is having java files and src/clas is having class files uptodate property=xmlBuild.notRequired targetfile=${src}/clas srcfiles dir= ${src1} includes=tempcasetoolnew.java/ /uptodate in this case

Re: Pre-pending [ant-user]

2002-04-02 Thread stephan beal
On Monday 01 April 2002 22:28 pm, [EMAIL PROTECTED] wrote: OK, I'll set up my own filter. I just want to clarify that most lists don't have the problems you talked about. Some mail clients (kmail, at least) can filter based off of the mailing list id. See if your client'll do that and

Re: CVS and ant

2002-04-02 Thread stephan beal
On Tuesday 02 April 2002 02:57 am, [EMAIL PROTECTED] wrote: [cvs] protocol error: `../source/src/oneOfMyFolders' has too many .. It is complaining the '..' - the protocol error. I did not change that else my ant would not be pointing to the right folder. How can I solve this problem?

Environment Variables and Ant

2002-04-02 Thread Shoemaker, Michael (STL)
Hello Folks I have a question for you. I recently downloaded the J2EE sdk and would like to try it out. My dilemma involves hard coded paths in my build.xml files. Currently, I have an init section where I specify property name=j2ee.dir value=c:\j2sdkee1.2.1 /. Is it possible to remove the

RE: Environment Variables and Ant

2002-04-02 Thread Dominique Devienne
See last example of http://jakarta.apache.org/ant/manual/CoreTasks/property.html (at bottom of page). --DD -Original Message- From: Shoemaker, Michael (STL) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 7:21 AM To: 'Ant Users List' Subject:Environment

EJB Packaging

2002-04-02 Thread Barry Jia
First of all, I would say I am NOT an EJB guy. But I was asked to compile and package the EJBs for WebLogic. In our app, we have 4 EJBs(*.jar ,including a base persistent EJB) and we have a web app (.war) which include all jsp, servlet and web app classes). We want to package them together and

RE: Research question

2002-04-02 Thread Chappell, Simon P
This gets to my whole point. Almost every IDE offers some kind of project capability and a way to compile that project, but (usually) only from within the IDE itself. I desire a stand-alone build system that is cross-platform (Win2K, Linux, Solaris, AIX, Mac OS X at a minimum), easy to use

Re: Research question

2002-04-02 Thread Erik Hatcher
Would the sell of a few snazzy Ant logo embroidered shirts help convince management?! :) (p.s. Where are we with that?) - Original Message - From: Chappell, Simon P [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 10:21 AM Subject: RE: Research

Please clarify a point about properties

2002-04-02 Thread Brian Murray
I'm trying to set up a precedence for setting properties as follows: command-line--environment--file. In searching the archives for some information about setting properties I saw the following statement which didn't seem accurate to me: I would like to define default properties in a property

Re: Research question

2002-04-02 Thread Ronn Chinowutthichai
I desire a stand-alone build system that is cross-platform (Win2K, Linux, Solaris, AIX, Mac OS X at a minimum), easy to use (not all of our developers will have time to learn anything complicated *cough*make*cough*), capable of being run from a command-line or script. Yep. I can't

RE: EJB Packaging

2002-04-02 Thread Eddie Bernard
First question: What version of Weblogic are you using? It makes a difference since 6.x supports the J2EE standard for packaging and (AFAIK) 5.x does not. This means that you cannot package enterprise applications in 5.x (per the J2EE convention). Next, take a look through the archives for

telnet task

2002-04-02 Thread Kailash . Subramanian
All, I have a weird problem. I am using the telnet task to do just ls on the remote machine. My code looks like target name=TELNET telnet server=picasso userid=user password=password read/home/picasso/vobadm/read writels/write read/home/picasso/vobadm/read /telnet

RE: Research question

2002-04-02 Thread Brown, Michael
Simon, I have similar requirements for proposing a cross-platform solution to build several products. I have requirements to build on Windows, AIX, HP-Unix, Solaris, and OS400. The added twist is that we want to not only build java, we are already doing a pilot of java with ANT and Cruise

Problem with serialization when running a junit task

2002-04-02 Thread Richard Bolen
I'm using a junit task to test a distributed application. The application serializes objects to send them over the network. When I run my junit tests (which work perfectly outside of ant) I have problems with serialization. Specifically, the serialVersionUid of the objects I'm sending is

Is there a property that does what -logger does?

2002-04-02 Thread Scott Ellsworth
Hi, all. I have been reading the docs, but I have not found a property-based way to set the logger. Is this possible? (I have our people trained to use a local.properties override for other things, so doing this to set the logger would make the learning curve shallower, and would mean one

RE: Environment Variables and Ant

2002-04-02 Thread seapwc
I have wondered what the phrase italic select /italic meant in that last example. It's in the second to the last line. Can anyone clarify? I assumed it meant windoze. At 07:03 AM 4/2/02, you wrote: See last example of http://jakarta.apache.org/ant/manual/CoreTasks/property.html (at bottom of

Re: Environment Variables and Ant

2002-04-02 Thread Erik Hatcher
It just means that Ant is using the Java API to get environment variables, and that relies on the Java runtime providing it. Don't worry, property environement=env/ works in the environments you're likely to encounter. I don't know of any where it doesn't work. Anyone know differently?

Re: Is there a property that does what -logger does?

2002-04-02 Thread Erik Hatcher
No, there isn't a property way to do this. But the latest wrapper scripts allow you to configure an environment variable ANT_ARGS that is used. So you could: set ANT_ARGS=-logger your favorite logger Erik p.s. Again, this requires that you have the latest (past version 1.4.1) ant.bat/.sh

referencing multiple xml files from one file.

2002-04-02 Thread Ketul Sakhpara
hi, I want to keep my build process modular. I want to have a separate xml file for checking out code, a separate file for compiling, a different xml file for building and packaging. Is there a way to reference these files from a single ant xml file ? Thanks! Ketul -- To unsubscribe,

RE: Environment Variables and Ant

2002-04-02 Thread Shoemaker, Michael (STL)
Thanks Dominique Works like a charm. Mike -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 9:04 AM To: 'Ant Users List' Subject: RE: Environment Variables and Ant See last example of

Re: referencing multiple xml files from one file.

2002-04-02 Thread Erik Hatcher
RTFM: ant task. - Original Message - From: Ketul Sakhpara [EMAIL PROTECTED] To: 'Ant Users List' [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 5:01 PM Subject: referencing multiple xml files from one file. hi, I want to keep my build process modular. I want to have a separate

Re: Please clarify a point about properties

2002-04-02 Thread Erik Hatcher
- Original Message - From: Brian Murray [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 10:53 AM Subject: Please clarify a point about properties I'm trying to set up a precedence for setting properties as follows: command-line--environment--file. In searching

Running a server in a separate JVM

2002-04-02 Thread Chris Hatton
I'm attempting to use ant to start/stop Tomcat 4.0 to improve the turn around time on testing my server side code. I have been using the following target to start Tomcat... target name=Start_Tomcat description=Starts the server exec dir=${JAVA_HOME}\bin executable=java

looking for human representative from Ant project

2002-04-02 Thread JReitano
Hi, Ant was chosen by Software Development magazine as a finalists for this year's Jolt Product Excellence Awards. We will be announcing the awards at our conference, Software Development West, in San Jose on April 24th. I am looking for someone officially associated with the Ant project who

RE: Running a server in a separate JVM

2002-04-02 Thread Erik
Try using the java task with a fork=true instead of exec. -Original Message- From: Chris Hatton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 6:34 PM To: [EMAIL PROTECTED] Subject: Running a server in a separate JVM I'm attempting to use ant to start/stop Tomcat 4.0 to

Re: Running a server in a separate JVM

2002-04-02 Thread Erik Hatcher
yes/on/true all the same for Ant! (anything else is false) - Original Message - From: Erik [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 8:24 PM Subject: RE: Running a server in a separate JVM Oops... according to the docs, it should

JTest task

2002-04-02 Thread Jon Schewe
Has anyone written a task for Parasoft's JTest? I know it's not free, but I'm using it and need to find or write something for it soon, so before I start working on it I'd like to know if someone else has. I checked the archives and someone asked last year, but no responses yet. -- Jon

Re: Specifying Jaxp library for target

2002-04-02 Thread Stefan Bodewig
On Wed, 3 Apr 2002, Carl Brenton [EMAIL PROTECTED] wrote: Does the java compiler get executed in the same process space as ant and therefore use the currently loaded (library) classes? Yes, unless you set the includeantruntime attribute of javac to false. Looking at ant's verbose output