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