@echo off
rem Turns console output messages off.
rem
rem $RCSfile: start_bat.html,v $
rem
rem Copyright (c) 1999-2002. The Res Medicinae Developers. All rights
reserved.
rem
rem This software is published under the GPL GNU General Public License.
rem This program is free software; you can redistribute it and\or
rem modify it under the terms of the GNU General Public License
rem as published by the Free Software Foundation; either version 2
rem of the License, or (at your option) any later version.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem along with this program; if not, write to the Free Software
rem Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
rem
rem http:\\www.resmedicinae.org
rem - Information in Medicine -
rem
rem This file can be used to easily start the specified project.
rem
rem @see http:\\www.apache.org
rem @version $Revision: 1.1 $ $Date $Author: behr78 $
rem @author Michael Simon <michael.simon@gmx.net>
rem @author Henrik Brandes <henrik-b@gmx.de>
rem @author Saddia Malik <kermitmaliks@web.de>
rem @author Christian Heller <christian.heller@tuxtax.de>
rem @author Dirk Behrendt <schnoerk@web.de>
rem
rem Sets and exports the java path and java executable.
rem
set JAVA_HOME=\jdk14
set JAVA=%JAVA_HOME%\bin\java
set JAVA_RUNTIME_PATH=%JAVA_HOME%\jre\lib\rt.jar
set JAVA_TOOLS_PATH=%JAVA_HOME%\lib\tools.jar
rem
rem Sets and exports the home path of the project.
rem
set RESMEDICINAE_HOME=\Studienarbeit\cvs
rem
rem Sets and exports the crimson path.
rem
rem set CRIMSON_PATH=%RESMEDICINAE_HOME%\lib\crimson.jar
rem
rem Sets and exports the healthcare path.
rem
rem set HEALTHCARE_PATH=%RESMEDICINAE_HOME%\lib\healthcare.jar
rem
rem Sets and exports the jakarta-oro-2.0.4 path.
rem
rem set JAKARTA_PATH=%RESMEDICINAE_HOME%\lib\jakarta-oro-2.0.4.jar
rem
rem Sets and exports the jaxp path.
rem
rem set JAXP_PATH=%RESMEDICINAE_HOME%\lib\jaxp.jar
rem
rem Sets and exports the junit path.
rem
rem set JUNIT_PATH=%RESMEDICINAE_HOME%\lib\junit.jar
rem
rem Sets and exports the kiwi path.
rem
rem set KIWI_PATH=%RESMEDICINAE_HOME%\lib\kiwi.jar
rem
rem Sets and exports the log4j-core path.
rem
rem set LOG_PATH=%RESMEDICINAE_HOME%\lib\log4j-core.jar
rem
rem Sets and exports the record path.
rem
rem set RECORD_PATH=%RESMEDICINAE_HOME%\lib\record.jar
rem
rem Sets and exports the resmedicinae path.
rem
rem set RESMEDICINAE_PATH=%RESMEDICINAE_HOME%\lib\resmedicinae.jar
rem
rem Sets and exports the resmedlib path.
rem
rem set RESMEDLIB_PATH=%RESMEDICINAE_HOME%\lib\resmedlib.jar
rem
rem Sets and exports the scope-bin path.
rem
rem set SCOPE_PATH=%RESMEDICINAE_HOME%\lib\scope-bin.jar
rem
rem Sets and exports the servlet path.
rem
rem set SERVLET_PATH=%RESMEDICINAE_HOME%\lib\servlet.jar
rem
rem Sets and exports the xalan path.
rem
rem set XALAN_PATH=%RESMEDICINAE_HOME%\lib\xalan.jar
rem
rem Sets and exports the xeres path.
rem
rem set XERES_PATH=%RESMEDICINAE_HOME%\lib\xeres.jar
rem
rem Sets and exports the class path.
rem
set CLASSPATH=%CLASSPATH%;%JAVA_TOOLS_PATH%;%JAVA_RUNTIME_PATH%;
%CRIMSON_PATH%;%HEALTHCARE%;%JAKARTA_PATH%;%JAXP%;%JUNIT%;
%KIWI%;%LOG_PATH%;%RECORD_PATH%;%RESMEDICINAE_PATH%;
%SCOPE_PATH%;%SERVLET_PATH%;%XALAN_PATH%;%XERES_PATH%
rem CLASSPATH=%CLASSPATH%;%JAVA_TOOLS_PATH%;%JAVA_RUNTIME_PATH%;
rem Runs the application using the Sun JRE.
%JAVA% -classpath %CLASSPATH%
org.resmedicinae.application.sample.myworld.MyWorldLauncher
<<BACK TO THE TOP |