The following issue has been updated:
Updater: J�rg Schaible (mailto:[EMAIL PROTECTED])
Date: Wed, 3 Dec 2003 3:43 AM
Comment:
Please reapply as target for this issue the 1.0-BRANCH. This bug already caused me to
create a wrong bug report (MAVEN-1058). Attached a patch against the 1.0-BRANCH!
Changes:
Attachment changed to maven.diff
---------------------------------------------------------------------
For a full history of the issue, see:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-786&page=history
---------------------------------------------------------------------
View the issue:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-786
Here is an overview of the issue:
---------------------------------------------------------------------
Key: MAVEN-786
Summary: maven Linux shell script incorrectly quotes arguments it passes through
to Java
Type: Bug
Status: Reopened
Priority: Minor
Original Estimate: Unknown
Time Spent: Unknown
Remaining: Unknown
Project: maven
Fix Fors:
1.1
Versions:
1.1
Assignee:
Reporter: John Farrell
Created: Fri, 5 Sep 2003 12:35 AM
Updated: Wed, 3 Dec 2003 3:43 AM
Environment: Linux (in my case, Mandrake 9.1)
Description:
If I want to pass a Java property with a space in it through to my goal,
for example,
maven -e "-Dminestar.release=stable potatoes" zip
maven incorrectly quotes the parameters when passing them to Java resulting in:
BUILD FAILED
Goal "potatoes" does not exist in this project.
HERE'S THE FIX:
Edit the maven shell script. Down the bottom are two lines which say:
$MAIN_CLASS $@
Change them to
$MAIN_CLASS "$@"
This tells the shell to quote parameters individually. The bash manual says:
@ Expands to the positional parameters, starting from one. When
the expansion occurs within double quotes, each parameter
expands to a separate word. That is, "$@" is equivalent to "$1"
"$2" ... When there are no positional parameters, "$@" and $@
expand to nothing (i.e., they are removed).
It took me ages to find this trick for our own system, I know it's confusing as hell.
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]