Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 4736 |
rpuchmay |
1 |
REM
|
|
|
2 |
REM This batch file sets up the runtime environment for the java application
|
|
|
3 |
REM that interrogates the Release Manager for the UTF data.
|
|
|
4 |
REM It then calls the application with the rtag ID passed in as the argument.
|
|
|
5 |
REM
|
|
|
6 |
REM e.g. doScrape.bat 30083
|
|
|
7 |
|
|
|
8 |
set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_38
|
|
|
9 |
set PATH=%JAVA_HOME%\bin;%PATH%
|
|
|
10 |
set classpath=C:\ClearCase\TeamCity\bin;C:\ClearCase\TeamCity\jars\ojdbc6.jar
|
|
|
11 |
|
|
|
12 |
cd C:\ClearCase\TeamCity\bin
|
|
|
13 |
java Aggregator %1
|