Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.4.1
-
Fix Version/s: 1.5.0
-
Labels:None
-
Environment:Windows XP, Java 1.6 Maven 3.0
-
Number of attachments :
Description
running mvn jboss:configure generates this line inside the bin/run.bat
@set JAVA_OPTS=" -Djboss.server.home.dir=d:\jboss_server\all" "-Djboss.server.home.url=file:d:\jboss_server\all"
the problem are the positions of the ". this can't be exceuted by windows cmd. It need's to be changed into:
@set "JAVA_OPTS= -Djboss.server.home.dir=d:\jboss_server\all -Djboss.server.home.url=file:d:\jboss_server\all"
The other issue is the $
{options}@call d:\smc_sdk\jboss\bin\run.bat -c all ${options}
If options are not set the $
{options}should be removed.
Fixed in r13289.