Last change
on this file since 4508 was
4508,
checked in by Jari Häkkinen, 15 years ago
|
Addresses #1106. Missed to change reference wherefrom retrive GPLv3 license text. And some other changes.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.1 KB
|
Line | |
---|
1 | @echo off |
---|
2 | REM $Id: set_classpath.bat 4508 2008-09-11 20:00:35Z jari $ |
---|
3 | REM |
---|
4 | REM Copyright (C) 2006, 2007 Nicklas Nordborg |
---|
5 | REM |
---|
6 | REM This file is part of BASE - BioArray Software Environment. |
---|
7 | REM Available at http://base.thep.lu.se/ |
---|
8 | REM |
---|
9 | REM BASE is free software; you can redistribute it and/or modify it |
---|
10 | REM under the terms of the GNU General Public License as published by |
---|
11 | REM the Free Software Foundation; either version 3 of the License, or |
---|
12 | REM (at your option) any later version. |
---|
13 | REM |
---|
14 | REM BASE is distributed in the hope that it will be useful, but |
---|
15 | REM WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | REM General Public License for more details. |
---|
18 | REM |
---|
19 | REM You should have received a copy of the GNU General Public License |
---|
20 | REM along with BASE. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | REM ---------------------------------------- |
---|
22 | |
---|
23 | SET WEBINF=..\www\WEB-INF |
---|
24 | |
---|
25 | REM Base2 configuration files and non-packaged class files |
---|
26 | SET CP=%WEBINF%\classes |
---|
27 | |
---|
28 | REM All WEB-INF/lib files |
---|
29 | FOR %%i IN (%WEBINF%\lib\*.jar) DO (CALL :addtocp %%i) |
---|
30 | |
---|
31 | GOTO :eof |
---|
32 | REM End main program |
---|
33 | |
---|
34 | REM Subroutine for adding an entry to CP |
---|
35 | :addtocp |
---|
36 | SET CP=%CP%;%1 |
---|
37 | GOTO :eof |
---|
Note: See
TracBrowser
for help on using the repository browser.