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