Re: "-D" params with spaces are parsed into goals on unix

2003-11-20 Thread Martin Skopp
On Wed, 2003-11-19 at 05:58, [EMAIL PROTECTED] wrote: > We had one before about this: > http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-786 > But from memory, the 'fix' broke 'sh' or cygwin or something. Possible "$@" is not available in original bourne shell, so I suggest the following t

Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread dion
Martin Skopp <[EMAIL PROTECTED]> wrote on 19/11/2003 04:20:35 AM: > Sorry being late, dion, I was a few days offline... > > On Tue, 2003-11-18 at 14:59, [EMAIL PROTECTED] wrote: > > What happens when you use > > > > maven '-Dmyname=billy bob' > > > > or > > > > maven "-Dmyname=billy bob" >

Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread Martin Skopp
Sorry being late, dion, I was a few days offline... On Tue, 2003-11-18 at 14:59, [EMAIL PROTECTED] wrote: > What happens when you use > > maven '-Dmyname=billy bob' > > or > > maven "-Dmyname=billy bob" Should work fine! " is converted into ' anyway (after shell expansion inside the double

Re: "-D" params with spaces are parsed into goals on unix

2003-11-18 Thread dion
What happens when you use maven '-Dmyname=billy bob' or maven "-Dmyname=billy bob" -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Martin Skopp <[EMAIL PROTECTED]> wrote on 12/11/2003 07:28:57 PM: > IMHO this is a bug in the shell-script MAVEN_HOME/

Re: "-D" params with spaces are parsed into goals on unix

2003-11-12 Thread Scott Brickner
On Wed, 2003-11-12 at 03:28, Martin Skopp wrote: > IMHO this is a bug in the shell-script MAVEN_HOME/bin/maven > > Change the lines containing > > $MAIN_CLASS $@ > > into > > $MAIN_CLASS "$@" > > Well after all, this probably depends upon the actual shell you are > using. I don't

Re: "-D" params with spaces are parsed into goals on unix

2003-11-12 Thread Martin Skopp
IMHO this is a bug in the shell-script MAVEN_HOME/bin/maven Change the lines containing $MAIN_CLASS $@ into $MAIN_CLASS "$@" Well after all, this probably depends upon the actual shell you are using. I don't know if a korn shell (ksh) would support "$@" Probably the first

Re: "-D" params with spaces are parsed into goals on unix

2003-11-12 Thread Nicolas . CHALUMEAU
ED] cc : Objet : "-D" params with spaces are parsed into goals on unix I'm running rc1 w/ jdk1.3 Calling maven like so on Windows: maven -Dmyname="billy bob" Seems to proceed normally. On my linux machine, I get: BUILD FAILED Goal "bob"

"-D" params with spaces are parsed into goals on unix

2003-11-11 Thread Jeff Barrett
I'm running rc1 w/ jdk1.3 Calling maven like so on Windows: maven -Dmyname="billy bob" Seems to proceed normally. On my linux machine, I get: BUILD FAILED Goal "bob" does not exist in this project. I thought it was a quoting problem so I tried: maven -Dmyname=\"billy bob\" which gives: BUIL