source: trunk/src/test/run.bat @ 170

Last change on this file since 170 was 170, checked in by Nicklas Nordborg, 18 years ago

Added antlr-2.7.4.jar

File size: 2.1 KB
Line 
1@echo off
2REM $Id: run.bat,v 1.6 2004/10/27 15:39:47 nicklas Exp $
3REM
4REM BioArray Software Environment (BASE) - http://base.thep.lu.se/
5REM Copyright (C) 2002-2004 Lao Saal, Carl Troein,
6REM Johan Vallon-Christersson, Jari Häkkinen, Nicklas Nordborg
7REM
8REM This file is part of BASE.
9REM
10REM BASE is free software; you can redistribute it and/or
11REM modify it under the terms of the GNU General Public License
12REM as published by the Free Software Foundation; either version 2
13REM of the License, or (at your option) any later version.
14REM
15REM BASE is distributed in the hope that it will be useful,
16REM but WITHOUT ANY WARRANTY; without even the implied warranty of
17REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18REM GNU General Public License for more details.
19REM
20REM You should have received a copy of the GNU General Public License
21REM along with this program; if not, write to the Free Software
22REM Foundation, Inc., 59 Temple Place - Suite 330,
23REM Boston, MA  02111-1307, USA.
24REM ----------------------------------------
25
26REM Set up the classpath
27SET CP=.
28
29REM Base2 core
30SET CP=%CP%;../core
31
32REM Hibernate
33SET CP=%CP%;../../lib/compile/hibernate3.jar
34SET CP=%CP%;../../lib/dist/cglib-full-2.0.2.jar
35SET CP=%CP%;../../lib/dist/commons-collections-2.1.1.jar
36SET CP=%CP%;../../lib/dist/commons-logging-1.0.4.jar
37SET CP=%CP%;../../lib/dist/dom4j-1.5.2.jar
38SET CP=%CP%;../../lib/dist/ehcache-1.1.jar
39SET CP=%CP%;../../lib/dist/jta.jar
40SET CP=%CP%;../../lib/dist/odmg.jar
41SET CP=%CP%;../../lib/dist/log4j-1.2.9.jar
42SET CP=%CP%;../../lib/dist/antlr-2.7.4.jar
43
44REM MySQL JDBC driver
45SET CP=%CP%;../../lib/dist/mysql-connector-java-3.0.15-ga-bin.jar
46
47REM SQL Server JDBC driver
48REM SET CP=%CP%;../../lib/dist/jtds-0.8.1.jar
49
50REM Postgres JDBC driver
51REM SET CP=%CP%;../../lib/dist/postgresql.jar
52
53REM Xerces XML parser
54SET CP=%CP%;../../lib/dist/xerces-2.6.2.jar
55SET CP=%CP%;../../lib/dist/xml-apis.jar
56
57REM Java Advanced Imaging
58SET CP=%CP%;../../lib/compile/jai_codec.jar
59SET CP=%CP%;../../lib/compile/jai_core.jar
60SET CP=%CP%;../../lib/compile/mlibwrapper_jai.jar
61
62REM Execute test class
63java -ea -cp %CP% %1 %2 %3 %4 %5 %6 %7 %8 %9
Note: See TracBrowser for help on using the repository browser.