i have found a solution without manually start 1 by 1, u need to change the ant startjboss target
| <target name="startjboss7" description="Start JBoss7"> |
|
|
| <exec dir="${jboss7.home}/bin" executable="cmd" osfamily="windows"> |
|
|
| <arg line="/c standalone.bat" /> |
|
|
| </exec> |
|
| </target> |
|
|
|
|
|
|
|
|
|
| <target name="stop.jboss7"> |
| | <exec dir="${jboss7.home}/bin" executable="cmd" osfamily="windows"> |
| | <arg line="/c jboss-admin.bat" /> |
|
| | <arg value="--connect" /> |
|
| | <arg value="command=:shutdown" /> |
|
| </exec> |
|
Hope it help