source: release-kits/lirk3/bin/ant-installer/examples/buildtypes/script-auto/checkConfig.cmd@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 649 bytes
Line 
1@echo off
2
3REM This script check the antinstall-config.xml configuration in the current directory
4
5
6REM Installer requires Java
7if "%JAVA_HOME%" == "" goto setjava
8
9set CLASSPATH=..\..\..\lib\xercesImpl.jar
10set CLASSPATH=%CLASSPATH%;..\..\..\lib\xml-apis.jar
11set CLASSPATH=%CLASSPATH%;..\..\..\lib\ant-installer.jar
12set CLASSPATH=%CLASSPATH%;..\..\..\antlib\ant.jar
13
14
15%JAVA_HOME%\bin\java -classpath %CLASSPATH% org.tp23.antinstaller.runtime.ConfigurationLoader installer
16goto end
17
18:setjava
19echo Installer requires Java available from http://java.sun.com
20echo If you have Java installed you may just need to set the variable JAVA_HOME
21
22:end
23pause
Note: See TracBrowser for help on using the repository browser.