The following comment has been added to this issue:
Author: Charlie Dobbie
Created: Fri, 17 Oct 2003 9:00 AM
Body:
Just for the record, these are a problem on WinME as well.
On Win9x-class machines command lines do not support stderr redirection and the equals
symbol isn't valid inside a system property.
---------------------------------------------------------------------
View the issue:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-942
Here is an overview of the issue:
---------------------------------------------------------------------
Key: MAVEN-942
Summary: running maven on windows 98
Type: Bug
Status: Unassigned
Priority: Minor
Time Spent: Unknown
Remaining: Unknown
Project: maven
Fix Fors:
1.0-rc2
Versions:
1.0-rc1
Assignee:
Reporter: anita kulshreshtha
Created: Thu, 16 Oct 2003 9:14 PM
Updated: Fri, 17 Oct 2003 2:35 AM
Environment: windows 98 second edition
Description:
It appears from maven.bat file that maven intends to support
windows 98 based systems. The following changes are needed to make it
run on windows 98 second edition ----------
file maven.bat ---
L57 : %MAVEN_COMMAND_COM% /C DIR "%JAVA_HOME%" 2>&1 | %MAVEN_FIND_EXE% /I /C
"%JAVA_HOME%" >nul
L79 : %MAVEN_COMMAND_COM% /C DIR "%MAVEN_HOME%" 2>&1 | %MAVEN_FIND_EXE% /I /C
"%MAVEN_HOME%" >nul
L57 and L79 give "Too many parameters -2" error on windows 98. These will have to
be rewritten.
L125 : SET
MAVEN_ENDORSED="-Djava.endorsed.dirs=%JAVA_HOME%\lib\endorsed;%MAVEN_HOME%\lib\endorsed"
On windows 98 SET ... = "...=..." gives Syntax error. The following changes work -
1. change L125 to --
SET MAVEN_ENDORSED="%JAVA_HOME%\lib\endorsed;%MAVEN_HOME%\lib\endorsed"
2. Replace %MAVEN_ENDORSED% by -Djava.endorsed.dirs=%MAVEN_ENDORSED% in lines
L129, L130, L135 and L136.
3. SystemRoot is not defined. It should be mentioned along with MAVEN_HOME
and JAVA_HOME.
---------------------------------------------------------------------
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]