2249 |
12 May 06 |
nicklas |
# $Id$ |
2249 |
12 May 06 |
nicklas |
2 |
# |
3675 |
16 Aug 07 |
jari |
# Copyright (C) 2006, 2007 Nicklas Nordborg |
2249 |
12 May 06 |
nicklas |
4 |
# |
2249 |
12 May 06 |
nicklas |
# This file is part of BASE - BioArray Software Environment. |
2249 |
12 May 06 |
nicklas |
# Available at http://base.thep.lu.se/ |
2249 |
12 May 06 |
nicklas |
7 |
# |
2249 |
12 May 06 |
nicklas |
# BASE is free software; you can redistribute it and/or modify it |
2249 |
12 May 06 |
nicklas |
# under the terms of the GNU General Public License as published by |
4480 |
05 Sep 08 |
jari |
# the Free Software Foundation; either version 3 of the License, or |
2249 |
12 May 06 |
nicklas |
# (at your option) any later version. |
2249 |
12 May 06 |
nicklas |
12 |
# |
2249 |
12 May 06 |
nicklas |
# BASE is distributed in the hope that it will be useful, but |
2249 |
12 May 06 |
nicklas |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
2249 |
12 May 06 |
nicklas |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
2249 |
12 May 06 |
nicklas |
# General Public License for more details. |
2249 |
12 May 06 |
nicklas |
17 |
# |
2249 |
12 May 06 |
nicklas |
# You should have received a copy of the GNU General Public License |
4514 |
11 Sep 08 |
jari |
# along with BASE. If not, see <http://www.gnu.org/licenses/>. |
2249 |
12 May 06 |
nicklas |
20 |
|
2249 |
12 May 06 |
nicklas |
# Set up the classpath |
2249 |
12 May 06 |
nicklas |
22 |
CP=. |
2959 |
27 Nov 06 |
nicklas |
23 |
CP=$CP:../../config/local |
2959 |
27 Nov 06 |
nicklas |
24 |
CP=$CP:../../config/dist |
3659 |
13 Aug 07 |
nicklas |
25 |
CP=$CP:../../config/test |
2249 |
12 May 06 |
nicklas |
26 |
|
2582 |
24 Aug 06 |
nicklas |
# Testdata |
2959 |
27 Nov 06 |
nicklas |
28 |
CP=$CP:data |
3725 |
12 Sep 07 |
jari |
29 |
CP=$CP:../../data |
2582 |
24 Aug 06 |
nicklas |
30 |
CP=$CP:../../testdata |
2582 |
24 Aug 06 |
nicklas |
31 |
|
2634 |
12 Sep 06 |
nicklas |
# Base2 core & core plugins, etc. |
3962 |
14 Nov 07 |
nicklas |
33 |
CP=$CP:../info |
2249 |
12 May 06 |
nicklas |
34 |
CP=$CP:../core |
2340 |
30 May 06 |
nicklas |
35 |
CP=$CP:../plugins/core |
2634 |
12 Sep 06 |
nicklas |
36 |
CP=$CP:../clients/jobagent |
3962 |
14 Nov 07 |
nicklas |
37 |
CP=$CP:../webservices/client |
3962 |
14 Nov 07 |
nicklas |
38 |
CP=$CP:../webservices/server |
2249 |
12 May 06 |
nicklas |
39 |
|
4396 |
18 Aug 08 |
nicklas |
# All JAR file in lib/dist |
4396 |
18 Aug 08 |
nicklas |
41 |
LIB=../../lib |
4396 |
18 Aug 08 |
nicklas |
42 |
for i in `ls $LIB/dist/*.jar` |
4396 |
18 Aug 08 |
nicklas |
43 |
do |
4396 |
18 Aug 08 |
nicklas |
44 |
CP=${CP}:${i} |
4396 |
18 Aug 08 |
nicklas |
45 |
done |
2249 |
12 May 06 |
nicklas |
46 |
|
4396 |
18 Aug 08 |
nicklas |
# All JAR file in lib/webservices |
4396 |
18 Aug 08 |
nicklas |
48 |
for i in `ls $LIB/webservices/*.jar` |
4396 |
18 Aug 08 |
nicklas |
49 |
do |
4396 |
18 Aug 08 |
nicklas |
50 |
CP=${CP}:${i} |
4396 |
18 Aug 08 |
nicklas |
51 |
done |