source: trunk/src/test/set_classpath.sh @ 3910

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

Fixes #814 and #815: Upgrade Postgres JDBC and Hibernate

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.8 KB
Line 
1# $Id: set_classpath.sh 3910 2007-11-06 07:59:42Z nicklas $
2#
3# Copyright (C) 2006, 2007 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
23LIB=../../lib/dist
24WS_LIB=../../lib/webservices
25
26# Set up the classpath
27CP=.
28CP=$CP:../../config/local
29CP=$CP:../../config/dist
30CP=$CP:../../config/test
31
32# Testdata
33CP=$CP:data
34CP=$CP:../../data
35CP=$CP:../../testdata
36
37# Base2 core & core plugins, etc.
38CP=$CP:../core
39CP=$CP:../plugins/core
40CP=$CP:../clients/jobagent
41CP=$CP:../webservices
42
43# Hibernate
44CP=$CP:$LIB/hibernate3.jar
45CP=$CP:$LIB/cglib-2.1.3.jar
46CP=$CP:$LIB/asm.jar
47CP=$CP:$LIB/asm-attrs.jar
48CP=$CP:$LIB/commons-collections-2.1.1.jar
49CP=$CP:$LIB/commons-logging-1.1.jar
50CP=$CP:$LIB/dom4j-1.6.1.jar
51CP=$CP:$LIB/ehcache-1.2.3.jar
52CP=$CP:$LIB/jta.jar
53CP=$CP:$LIB/antlr-2.7.6.jar
54
55# Log4j logging system (also used by Hibernate)
56CP=$CP:$LIB/log4j-1.2.14.jar
57
58# C3P0 Connection pool manager
59CP=$CP:$LIB/c3p0-0.9.1.jar
60
61# MySQL JDBC driver
62CP=$CP:$LIB/mysql-connector-java-5.0.6-bin.jar
63
64# Postgres JDBC driver
65CP=$CP:$LIB/postgresql-8.2-506.jdbc4.jar
66
67# JDOM and Xerces XML parser
68CP=$CP:$LIB/jdom.jar
69CP=$CP:$LIB/jaxen-1.1-beta-7.jar
70CP=$CP:$LIB/saxpath.jar
71CP=$CP:$LIB/xerces-2.9.0.jar
72CP=$CP:$LIB/xml-apis.jar
73
74# Java Advanced Imaging
75CP=$CP:$LIB/jai_codec.jar
76CP=$CP:$LIB/jai_core.jar
77CP=$CP:$LIB/mlibwrapper_jai.jar
78
79# Java Math Expression Parser
80CP=$CP:$LIB/jep-2.4.0.jar
81
82# JFreeChart
83CP=$CP:$LIB/jfreechart-1.0.3.jar
84CP=$CP:$LIB/jcommon-1.0.6.jar
85
86# Axis
87CP=$CP:$WS_LIB/axis2-kernel-1.3.jar
88CP=$CP:$WS_LIB/axis2-adb-1.3.jar
89CP=$CP:$WS_LIB/axiom-api-1.2.5.jar
90CP=$CP:$WS_LIB/axiom-dom-1.2.5.jar
91CP=$CP:$WS_LIB/axiom-impl-1.2.5.jar
92CP=$CP:$WS_LIB/stax-api-1.0.1.jar
93CP=$CP:$WS_LIB/wstx-asl-3.2.1.jar
94CP=$CP:$WS_LIB/wsdl4j-1.6.2.jar
95CP=$CP:$WS_LIB/XmlSchema-1.3.2.jar
96CP=$CP:$WS_LIB/mail-1.4.jar
97CP=$CP:$WS_LIB/commons-httpclient-3.0.1.jar
98CP=$CP:$WS_LIB/commons-codec-1.3.jar
99CP=$CP:$WS_LIB/activation-1.1.jar
100CP=$CP:$WS_LIB/backport-util-concurrent-2.2.jar
101CP=$CP:$WS_LIB/annogen-0.1.0.jar
102CP=$CP:$WS_LIB/axis2-java2wsdl-1.3.jar
103CP=$CP:$WS_LIB/neethi-2.0.2.jar
104
105# Affymetrix Fusion SDK
106CP=$CP:$LIB/AffxFusion.jar
107
108# TAR and BZIP
109CP=$CP:$LIB/tar.jar
110CP=$CP:$LIB/bzip2.jar
Note: See TracBrowser for help on using the repository browser.