[
https://issues.apache.org/jira/browse/MNG-8315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17959595#comment-17959595
]
ASF GitHub Bot commented on MNG-8315:
-------------------------------------
slawekjaranowski opened a new pull request, #1353:
URL: https://github.com/apache/maven-mvnd/pull/1353
Port from Maven core:
- https://github.com/apache/maven/pull/1808
> Failure of mvn.cmd if a .mvn directory is located at drive root
> ---------------------------------------------------------------
>
> Key: MNG-8315
> URL: https://issues.apache.org/jira/browse/MNG-8315
> Project: Maven (Moved to GitHub Issues)
> Issue Type: Bug
> Components: Command Line
> Affects Versions: 3.9.9
> Environment: Windows 10
> Reporter: Francois MAROT
> Assignee: Guillaume Nodet
> Priority: Minor
> Labels: easyfix
> Fix For: 3.9.10, 4.0.0-beta-5, 4.0.0
>
>
> When .mvn is located on filesystem root, on Windows, the command line created
> (in mvn.cmd) to run java fails.
> This is because the part concerning multiModuleProjectDirectory ends with a
> slash before the double quote which certainly means escaping and it messes
> the whole command. Example for drive o: :
> {code:java}
> "-Dmaven.multiModuleProjectDirectory=o:\"{code}
> In this case, java.exe displays its usage help as it thinks the command is
> wrong.
> The workaround is to add an additional escaping backslash:
> {code:java}
> "-Dmaven.multiModuleProjectDirectory=o:\\"{code}
> Note: this only happens in case there is a .mvn at root.
>
> This simple line added just before calling "%JAVACMD%" seems to do the job:
> {code:java}
> if "%MAVEN_PROJECTBASEDIR:~-1%"=="\" set
> "MAVEN_PROJECTBASEDIR=%MAVEN_PROJECTBASEDIR%\"{code}
> A workaround for users facing the problem is to define MAVEN_BASEDIR to the
> drive root with 2 backslash before running Maven:
> {code:java}
> set MAVEN_BASEDIR=%tempDriveLetter%:\\{code}
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)