diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2005-08-03 10:09:54 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2005-08-03 10:09:54 +0000 |
commit | 4f170b89a4ec0581b6701892522f0a808b28290b (patch) | |
tree | 9787e1340d52e2c8e0e024a53496b036b16200ba /spss.server/data/deploy/tools/configtool.bat | |
parent | 65ef567773b9684034d271e93529d555ab61cbfe (diff) | |
download | moa-id-spss-4f170b89a4ec0581b6701892522f0a808b28290b.tar.gz moa-id-spss-4f170b89a4ec0581b6701892522f0a808b28290b.tar.bz2 moa-id-spss-4f170b89a4ec0581b6701892522f0a808b28290b.zip |
Bug 271: Tool zur Migration des Konfigurationsfiles von 1.0 auf 1.3 erstellt.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@413 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.server/data/deploy/tools/configtool.bat')
-rw-r--r-- | spss.server/data/deploy/tools/configtool.bat | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/spss.server/data/deploy/tools/configtool.bat b/spss.server/data/deploy/tools/configtool.bat new file mode 100644 index 000000000..868df11f0 --- /dev/null +++ b/spss.server/data/deploy/tools/configtool.bat @@ -0,0 +1,25 @@ +@echo off
+
+rem
+rem Script to invoke the ConfigTool class
+rem
+rem Author: Gregor Karlinger
+rem Version: $Id: $
+rem
+
+
+if %OS%=="Windows_NT" @setlocal
+
+set CONFIGTOOL=at.gv.egovernment.moa.spss.server.tools.ConfigTool
+set TOOLSPATH=%~p0
+set CLASSPATH=%TOOLSPATH%tools.jar;%TOOLSPATH%xalan.jar;
+
+if "%JAVA_HOME%"=="" goto noJavaHome
+%JAVA_HOME%\bin\java.exe -classpath %CLASSPATH% %CONFIGTOOL% %1 %2 %3 %4 %5 %6 %7 %8 %9
+goto end
+
+:noJavaHome
+echo error: JAVA_HOME not defined
+
+:end
+if %OS%=="Windows_NT" @endlocal
\ No newline at end of file |