source: trunk/bin/set_classpath.sh @ 3510

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

Fixes #470

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