The following comment has been added to this issue:
Author: Colin Sampaleanu
Created: Wed, 22 Oct 2003 11:02 AM
Body:
I'm not so sure that using binary for these files is the best action, since people
still want to be able to edit them properly from any platform, and the binary will get
in the way (a unix user would see the extra CRs in this case).
What should probably happen is that since these are windows specific files, the build
process does an unconditional conversion on the target (output) files to the windows
format (CRLF). This way you could build maven on unix or windows, and the output would
always be correct.
---------------------------------------------------------------------
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: Tue, 21 Oct 2003 8:32 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]