source: trunk/src/test/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.1 KB
Line 
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
23LIB=../../lib/dist
24
25# Set up the classpath
26CP=.
27CP=$CP:../../config/local
28CP=$CP:../../config/dist
29
30# Testdata
31CP=$CP:data
32CP=$CP:../../testdata
33
34# Base2 core & core plugins, etc.
35CP=$CP:../core
36CP=$CP:../plugins/core
37CP=$CP:../clients/jobagent
38
39# Hibernate
40CP=$CP:$LIB/hibernate3.jar
41CP=$CP:$LIB/cglib-2.1.3.jar
42CP=$CP:$LIB/asm.jar
43CP=$CP:$LIB/asm-attrs.jar
44CP=$CP:$LIB/commons-collections-2.1.1.jar
45CP=$CP:$LIB/commons-logging-1.0.4.jar
46CP=$CP:$LIB/dom4j-1.6.1.jar
47CP=$CP:$LIB/ehcache-1.2.3.jar
48CP=$CP:$LIB/jta.jar
49CP=$CP:$LIB/antlr-2.7.6.jar
50
51# Log4j logging system (also used by Hibernate)
52CP=$CP:$LIB/log4j-1.2.14.jar
53
54# C3P0 Connection pool manager
55CP=$CP:$LIB/c3p0-0.9.1.jar
56
57# MySQL JDBC driver
58CP=$CP:$LIB/mysql-connector-java-5.0.6-bin.jar
59
60# Postgres JDBC driver
61CP=$CP:$LIB/postgresql-8.1-407.jdbc3.jar
62
63# JDOM and Xerces XML parser
64CP=$CP:$LIB/jdom.jar
65CP=$CP:$LIB/jaxen-1.1-beta-7.jar
66CP=$CP:$LIB/saxpath.jar
67CP=$CP:$LIB/xerces-2.9.0.jar
68CP=$CP:$LIB/xml-apis.jar
69
70# Java Advanced Imaging
71CP=$CP:$LIB/jai_codec.jar
72CP=$CP:$LIB/jai_core.jar
73CP=$CP:$LIB/mlibwrapper_jai.jar
74
75# Java Math Expression Parser
76CP=$CP:$LIB/jep-2.4.0.jar
77
78# JFreeChart
79CP=$CP:$LIB/jfreechart-1.0.3.jar
80CP=$CP:$LIB/jcommon-1.0.6.jar
81
82# Affymetrix Fusion SDK
83CP=$CP:$LIB/AffxFusion.jar
84
85# TAR and BZIP
86CP=$CP:$LIB/tar.jar
87CP=$CP:$LIB/bzip2.jar
Note: See TracBrowser for help on using the repository browser.