Last change
on this file was
6269,
checked in by Nicklas Nordborg, 9 years ago
|
References #1751: Platform-specific files should not have svn:eol-style=native
Set svn:eol-style on all BAT and SH files.
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Line | |
---|
1 | # |
---|
2 | # $Id: set_classpath.sh 6269 2013-04-11 07:00:42Z nicklas $ |
---|
3 | # |
---|
4 | # Copyright (C) 2006, 2007 Nicklas Nordborg |
---|
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 3 |
---|
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 BASE. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | # |
---|
22 | |
---|
23 | WEBINF=../www/WEB-INF |
---|
24 | |
---|
25 | # Base2 configuration files and non-packaged class files |
---|
26 | CP=$WEBINF/classes |
---|
27 | |
---|
28 | # All WEB-INF/lib/*.jar files |
---|
29 | for i in `ls $WEBINF/lib/*.jar` |
---|
30 | do |
---|
31 | CP=${CP}:${i} |
---|
32 | done |
---|
33 | |
---|
34 | # All bin/jar/*.jar files |
---|
35 | for i in `ls jar/*.jar` |
---|
36 | do |
---|
37 | CP=${CP}:${i} |
---|
38 | done |
---|
Note: See
TracBrowser
for help on using the repository browser.