-
Bug
-
Resolution: Obsolete
-
Major
-
6.0.0.M1
-
None
-
Windows XP professional
Window's cmd splits the arguments by the '=' char, so echo %1 %2 applied to -Dmodule=ejb gives -Dmodule and ejb .
========================================================
C:\JBossAS\trunk>build.bat -Dmodule=ejb
Calling .\tools\maven\bin\mvn.bat -Dmodule ejb
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[ERROR] FATAL ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).
========================================================
:: for %%i in (%NAMES%) do call :subLoop %%i %1 %2 %3 %4 %5 %6
>> call :subLoop %i -Dmodule ejb
When using %*, this does not happen.