source: trunk/src/test/set_classpath.bat @ 3510

Last change on this file since 3510 was 3510, checked in by Nicklas Nordborg, 16 years ago

Fixes #470

File size: 2.7 KB
Line 
1@echo off
2REM $Id: run.bat 2474 2006-07-31 13:52:51Z nicklas $
3REM
4REM Copyright (C) Authors contributing to this file.
5REM
6REM This file is part of BASE - BioArray Software Environment.
7REM Available at http://base.thep.lu.se/
8REM
9REM BASE is free software; you can redistribute it and/or
10REM modify it under the terms of the GNU General Public License
11REM as published by the Free Software Foundation; either version 2
12REM of the License, or (at your option) any later version.
13REM
14REM BASE is distributed in the hope that it will be useful,
15REM but WITHOUT ANY WARRANTY; without even the implied warranty of
16REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17REM GNU General Public License for more details.
18REM
19REM You should have received a copy of the GNU General Public License
20REM along with this program; if not, write to the Free Software
21REM Foundation, Inc., 59 Temple Place - Suite 330,
22REM Boston, MA  02111-1307, USA.
23REM ----------------------------------------
24
25REM Set up the classpath
26SET CP=.
27SET CP=%CP%;../../config/local
28SET CP=%CP%;../../config/dist
29
30REM Testdata
31SET CP=%CP%;data
32SET CP=%CP%;../../testdata
33
34REM Base2 core
35SET CP=%CP%;../core
36SET CP=%CP%;../plugins/core
37
38REM Hibernate
39SET CP=%CP%;../../lib/dist/hibernate3.jar
40SET CP=%CP%;../../lib/dist/cglib-2.1.3.jar
41SET CP=%CP%;../../lib/dist/asm.jar
42SET CP=%CP%;../../lib/dist/asm-attrs.jar
43SET CP=%CP%;../../lib/dist/commons-collections-2.1.1.jar
44SET CP=%CP%;../../lib/dist/commons-logging-1.0.4.jar
45SET CP=%CP%;../../lib/dist/dom4j-1.6.1.jar
46SET CP=%CP%;../../lib/dist/ehcache-1.2.3.jar
47SET CP=%CP%;../../lib/dist/jta.jar
48SET CP=%CP%;../../lib/dist/antlr-2.7.6.jar
49
50REM Log4j (also used by Hibernate)
51SET CP=%CP%;../../lib/dist/log4j-1.2.14.jar
52
53REM C3P0 Connection pool manager
54SET CP=%CP%;../../lib/dist/c3p0-0.9.1.jar
55
56REM MySQL JDBC driver
57SET CP=%CP%;../../lib/dist/mysql-connector-java-5.0.6-bin.jar
58
59REM Postgres JDBC driver
60SET CP=%CP%;../../lib/dist/postgresql-8.1-407.jdbc3.jar
61
62REM JDOM and Xerces XML parser
63SET CP=%CP%;../../lib/dist/jdom.jar
64SET CP=%CP%;../../lib/dist/jaxen-1.1-beta-7.jar
65SET CP=%CP%;../../lib/dist/saxpath.jar
66SET CP=%CP%;../../lib/dist/xerces-2.9.0.jar
67SET CP=%CP%;../../lib/dist/xml-apis.jar
68
69REM Java Advanced Imaging
70SET CP=%CP%;../../lib/dist/jai_codec.jar
71SET CP=%CP%;../../lib/dist/jai_core.jar
72SET CP=%CP%;../../lib/dist/mlibwrapper_jai.jar
73
74REM Java Math Expression Parser
75SET CP=%CP%;../../lib/dist/jep-2.4.0.jar
76
77REM JFreeChart
78SET CP=%CP%;../../lib/dist/jfreechart-1.0.3.jar
79SET CP=%CP%;../../lib/dist/jcommon-1.0.6.jar
80
81REM Affymetrix Fusion SDK
82SET CP=%CP%;../../lib/dist/AffxFusion.jar
83
84REM TAR and BZIP
85SET CP=%CP%;../../lib/dist/tar.jar
86SET CP=%CP%;../../lib/dist/bzip2.jar
87
Note: See TracBrowser for help on using the repository browser.