RE: jvmarg along with fork="true causing problem in ant 1.6.5

2006-05-25 Thread Yagna Boorada
Hi Antoine, Thanks for your reply. The argument is passed along with path. But the result is same. In fact here fork="true" causing the problem. The JDK version is 1.4.2_08. Regards Yagna If your mind can conceive it and heart can believe it then yo

Re: No package found

2006-05-25 Thread Martin Gainty
Heres my take If I am coding a once - y thing and it WORKS and I say wait a minute this is a waste of time since I am doing the SAME operation for all entities in a container namely all file(s) in the folder then I extract out the file specific stuff namely filename.extension and then use the fol

Re: No package found

2006-05-25 Thread Steve Loughran
Martin Gainty wrote: Javadoc task produces "folder does not contain any package" What does this mean? Thank You, I dont see this string in the current version, but there is something very similar, log(baseDir + " doesn\'t contain any packages, dropping it.",

Re: No package found

2006-05-25 Thread Martin Gainty
Good Afternoon All- Apparently sourcepath attribute doesnt parse the value assigned inside Javadoc task If inside the To: "Ant Developers List" Cc: "Ant Users List" Sent: Thursday, May 25, 2006 3:53 PM Subject: No package found Javadoc task produces "folder does not contain any package" Wha

Re: Sudo

2006-05-25 Thread Robert Koberg
Hi, (I might have missed this suggestion) Why not just put a script or ant build on the remote machine? Then call that from Ant using sshexec. best, -Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

No package found

2006-05-25 Thread Martin Gainty
Javadoc task produces "folder does not contain any package" What does this mean? Thank You, * This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email

RE: Sudo

2006-05-25 Thread saket
Ventakesh, If you are trying to do ssh on a remote machine and then execute some commands on a remote machine. Better try it using public private keys. Also do one more thing, become a sudo user and then generate the keys if you want to execute a command using sudo user. -Saket

RE: Sudo

2006-05-25 Thread Anderson, Rob (Global Trade)
You can configure sudo to allow you to run commands without entering a password. This is probably your best option. See the sudo documentation for details. -Rob Anderson > -Original Message- > From: Res Pons [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 23, 2006 9:22 PM > To: user@ant.a

Re: flow chart/graphical representation of build.xml/build process

2006-05-25 Thread Res Pons
also google for antexplorer, it creates a graphical mapping of your targets and tasks and the files involved. Original Message Follows From: "Scot P. Floess" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Ant Users List Subject: Re: flow chart/graphical representation of build.xml/

Re: Problem validating struts-config.xml

2006-05-25 Thread Antoine Levy-Lambert
Hello, can you mail a snippet of your build file ? I have no clue why you have this problem. Regards, Antoine > Original-Nachricht > Datum: Tue, 23 May 2006 03:18:25 -0700 (PDT) > Von: <[EMAIL PROTECTED]> > An: Ant Users > Betreff: Problem validating struts-config.xml > > De

Re: jvmarg along with fork="true causing problem in ant 1.6.5

2006-05-25 Thread Antoine Levy-Lambert
Hi, I am not sure why the java task expands the "*.xml", try \*.xml instead, may be it will work. I was not aware that there is a shell interpreter between the java task and the actual invocation of java. Java itself does not expand wildcards, as they do not mean anything in general for Java.

Re: AW: Could I bind an antlib to a xmlns via ?

2006-05-25 Thread Antoine Levy-Lambert
Hello Jan, > Original-Nachricht > Datum: Tue, 23 May 2006 17:06:20 +0200 > Von: <[EMAIL PROTECTED]> > An: > Betreff: AW: Could I bind an antlib to a xmlns via ? > > >Yes, > >it is painful! > > I was hidden > There is no hint in the manual of taskdef [1], typedef [2] or ant

RE: flow chart/graphical representation of build.xml/build process

2006-05-25 Thread Zywno, Maciej
Thanks! It's a pity you cannot print, or export the results, but anyway it gives some idea of the build process. -Original Message- From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 3:27 PM To: Ant Users List Subject: RE: flow chart/graphical representation of

RE: flow chart/graphical representation of build.xml/build process

2006-05-25 Thread Burgess, Benjamin
There is a free tool called Ant Explorer that generates flow charts. http://www.yworks.com/en/products_antexplorer_about.htm Ben -Original Message- From: Scot P. Floess [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 8:15 AM To: Ant Users List Subject: Re: flow chart/graphical re

jvmarg along with fork="true" causing problem in ant 1.6.5

2006-05-25 Thread Yagna Boorada
Hi, I am passing few arguments to the java task. I would like to pass an endorsed folder as a jvmarg to the task with fork="true". As one of the arguments take with a pattern like "*.xml" the fork is causing problem in the ant task. This is send

Re: flow chart/graphical representation of build.xml/build process

2006-05-25 Thread Scot P. Floess
Someone was pointing me to antdoc - http://antdoc.free.fr/ - which might be of use...but I think it only does html (I have not yet used it...but its on my todo list)... Zywno, Maciej wrote: Hi, I need to deal wit ha few build.xml's. It would be easie for me to understand the build process if

flow chart/graphical representation of build.xml/build process

2006-05-25 Thread Zywno, Maciej
Hi, I need to deal wit ha few build.xml's. It would be easie for me to understand the build process if I have a tool that would scan all build files that take part in the process and would present the build process in the form of a flow chart or other graphical form. Do you know what can help? T

Re: how to use spawn in linux for exec

2006-05-25 Thread Scot P. Floess
I also don't think you want to use spawn in this instance... I am guessing you want to see the result of the call? If so, ant won't log anything with the spawn attribute set to true. Another thing, I note you are using ls - unfortunately, with no spawn, you will get an error from sh as follo

Re: how to use spawn in linux for exec

2006-05-25 Thread Antoine Levy-Lambert
Hi, to find out which ant you are using, simply type : $ which ant in your console. To use another version of ant, for instance ant1.6.5, supposing you have installed ant1.6.5 under /opt/apache-ant-1.6.5, set the following environment variables : ANT_HOME=/opt/apache-ant-1.6.5 export ANT_HOME

how to use spawn in linux for exec

2006-05-25 Thread vamsee
Hi, I want to use spawn for exec in linux. I have used following code in my build.xml but when i ran ant in shell terminal, following msg is displayed: th task doesn't suppport spawn please provide some solution or any workaround so that i can have same affect as i