61 lines
1.6 KiB
Batchfile
61 lines
1.6 KiB
Batchfile
|
@echo off
|
||
|
rem -------------------------------------------------------------------------
|
||
|
rem JBoss Bootstrap Script for Win32
|
||
|
rem -------------------------------------------------------------------------
|
||
|
|
||
|
rem $Id: deployer.bat,v 1.3 2005/09/04 17:52:33 jjanke Exp $
|
||
|
|
||
|
@if not "%ECHO%" == "" echo %ECHO%
|
||
|
@if "%OS%" == "Windows_NT" setlocal
|
||
|
|
||
|
set DIRNAME=.\
|
||
|
if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
|
||
|
set PROGNAME=run.bat
|
||
|
if "%OS%" == "Windows_NT" set PROGNAME=%~nx0%
|
||
|
|
||
|
rem Read all command line arguments
|
||
|
|
||
|
set ARGS=
|
||
|
:loop
|
||
|
if [%1] == [] goto endloop
|
||
|
set ARGS=%ARGS% %1
|
||
|
shift
|
||
|
goto loop
|
||
|
:endloop
|
||
|
|
||
|
rem Find run.jar, or we can't continue
|
||
|
|
||
|
set RUNJAR=%DIRNAME%\deployer.jar
|
||
|
if exist "%RUNJAR%" goto FOUND_RUN_JAR
|
||
|
echo Could not locate %RUNJAR%. Please check that you are in the
|
||
|
echo bin directory when running this script.
|
||
|
goto END
|
||
|
|
||
|
:FOUND_RUN_JAR
|
||
|
|
||
|
if not "%JAVA_HOME%" == "" goto ADD_TOOLS
|
||
|
|
||
|
set JAVA=java
|
||
|
|
||
|
echo JAVA_HOME is not set. Unexpected results may occur.
|
||
|
echo Set JAVA_HOME to the directory of your local JDK to avoid this message.
|
||
|
goto SKIP_TOOLS
|
||
|
|
||
|
:ADD_TOOLS
|
||
|
|
||
|
set JAVA=%JAVA_HOME%\bin\java
|
||
|
|
||
|
rem Setup JBoss sepecific properties
|
||
|
set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name=%PROGNAME%
|
||
|
set JBOSS_HOME=%DIRNAME%\..
|
||
|
|
||
|
rem JPDA options. Uncomment and modify as appropriate to enable remote debugging.
|
||
|
rem set JAVA_OPTS=-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS%
|
||
|
|
||
|
"%JAVA%" %JAVA_OPTS% -classpath "%JBOSS_CLASSPATH%" org.jboss.jmx.service.RemoteDeployer %ARGS%
|
||
|
|
||
|
:END
|
||
|
if "%NOPAUSE%" == "" pause
|
||
|
|
||
|
:END_NO_PAUSE
|