source: branches/webservices/src/test/set_classpath.sh @ 3006

Last change on this file since 3006 was 3006, checked in by Nicklas Nordborg, 17 years ago

First go at a webservices framework.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1# $Id: set_classpath.sh 3006 2006-12-07 09:47:41Z 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
24WS_LIB=../../lib/webservices
25
26# Set up the classpath
27CP=.
28CP=$CP:../../config/local
29CP=$CP:../../config/dist
30
31# Testdata
32CP=$CP:data
33CP=$CP:../../testdata
34
35# Base2 core & core plugins, etc.
36CP=$CP:../core
37CP=$CP:../plugins/core
38CP=$CP:../clients/jobagent
39CP=$CP:../webservices
40
41# Hibernate
42CP=$CP:$LIB/hibernate3.jar
43CP=$CP:$LIB/cglib-2.1.3.jar
44CP=$CP:$LIB/asm.jar
45CP=$CP:$LIB/asm-attrs.jar
46CP=$CP:$LIB/commons-collections-2.1.1.jar
47CP=$CP:$LIB/commons-logging-1.0.4.jar
48CP=$CP:$LIB/dom4j-1.6.1.jar
49CP=$CP:$LIB/ehcache-1.2.3.jar
50CP=$CP:$LIB/jta.jar
51CP=$CP:$LIB/antlr-2.7.6.jar
52
53# Log4j logging system (also used by Hibernate)
54CP=$CP:$LIB/log4j-1.2.14.jar
55
56# C3P0 Connection pool manager
57CP=$CP:$LIB/c3p0-0.9.0.jar
58
59# MySQL JDBC driver
60CP=$CP:$LIB/mysql-connector-java-5.0.4-bin.jar
61
62# Postgres JDBC driver
63CP=$CP:$LIB/postgresql-8.1-407.jdbc3.jar
64
65# JDOM and Xerces XML parser
66CP=$CP:$LIB/jdom.jar
67CP=$CP:$LIB/jaxen-1.1-beta-7.jar
68CP=$CP:$LIB/saxpath.jar
69CP=$CP:$LIB/xerces-2.9.0.jar
70CP=$CP:$LIB/xml-apis.jar
71
72# Java Advanced Imaging
73CP=$CP:$LIB/jai_codec.jar
74CP=$CP:$LIB/jai_core.jar
75CP=$CP:$LIB/mlibwrapper_jai.jar
76
77# Java Math Expression Parser
78CP=$CP:$LIB/jep-2.4.0.jar
79
80# JFreeChart
81CP=$CP:$LIB/jfreechart-1.0.3.jar
82CP=$CP:$LIB/jcommon-1.0.6.jar
83
84# Axis
85CP=$CP:$WS_LIB/axis2-kernel-1.1.jar
86CP=$CP:$WS_LIB/axis2-adb-1.1.jar
87CP=$CP:$WS_LIB/axiom-api-1.2.jar
88CP=$CP:$WS_LIB/axiom-dom-1.2.jar
89CP=$CP:$WS_LIB/axiom-impl-1.2.jar
90CP=$CP:$WS_LIB/stax-api-1.0.1.jar
91CP=$CP:$WS_LIB/wstx-asl-3.0.1.jar
92CP=$CP:$WS_LIB/wsdl4j-1.6.1.jar
93CP=$CP:$WS_LIB/XmlSchema-1.2.jar
94CP=$CP:$WS_LIB/mail-1.4.jar
95CP=$CP:$WS_LIB/commons-httpclient-3.0.1.jar
96CP=$CP:$WS_LIB/commons-codec-1.3.jar
97CP=$CP:$WS_LIB/activation-1.1.jar
Note: See TracBrowser for help on using the repository browser.