bin/set_classpath.bat

Code
Comments
Other
Rev Date Author Line
6269 11 Apr 13 nicklas 1 @echo off
6269 11 Apr 13 nicklas 2 REM  $Id$
6269 11 Apr 13 nicklas 3 REM
6269 11 Apr 13 nicklas 4 REM  Copyright (C) 2006, 2007 Nicklas Nordborg
6269 11 Apr 13 nicklas 5 REM
6269 11 Apr 13 nicklas 6 REM  This file is part of BASE - BioArray Software Environment.
6269 11 Apr 13 nicklas 7 REM  Available at http://base.thep.lu.se/
6269 11 Apr 13 nicklas 8 REM  
6269 11 Apr 13 nicklas 9 REM  BASE is free software; you can redistribute it and/or modify it
6269 11 Apr 13 nicklas 10 REM  under the terms of the GNU General Public License as published by
6269 11 Apr 13 nicklas 11 REM  the Free Software Foundation; either version 3 of the License, or
6269 11 Apr 13 nicklas 12 REM  (at your option) any later version.
6269 11 Apr 13 nicklas 13 REM  
6269 11 Apr 13 nicklas 14 REM  BASE is distributed in the hope that it will be useful, but
6269 11 Apr 13 nicklas 15 REM  WITHOUT ANY WARRANTY; without even the implied warranty of
6269 11 Apr 13 nicklas 16 REM  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
6269 11 Apr 13 nicklas 17 REM  General Public License for more details.
6269 11 Apr 13 nicklas 18 REM
6269 11 Apr 13 nicklas 19 REM  You should have received a copy of the GNU General Public License
6269 11 Apr 13 nicklas 20 REM  along with BASE. If not, see <http://www.gnu.org/licenses/>.
6269 11 Apr 13 nicklas 21 REM ----------------------------------------
6269 11 Apr 13 nicklas 22
6269 11 Apr 13 nicklas 23 SET WEBINF=..\www\WEB-INF
6269 11 Apr 13 nicklas 24
6269 11 Apr 13 nicklas 25 REM Base2 configuration files and non-packaged class files
6269 11 Apr 13 nicklas 26 SET CP=%WEBINF%\classes
6269 11 Apr 13 nicklas 27
6269 11 Apr 13 nicklas 28 REM All WEB-INF/lib/*.jar files
6269 11 Apr 13 nicklas 29 FOR %%i IN (%WEBINF%\lib\*.jar) DO (CALL :addtocp %%i)
6269 11 Apr 13 nicklas 30
6269 11 Apr 13 nicklas 31 REM All jar/*.jar files
6269 11 Apr 13 nicklas 32 FOR %%i IN (jar\*.jar) DO (CALL :addtocp %%i)
6269 11 Apr 13 nicklas 33
6269 11 Apr 13 nicklas 34 GOTO :eof
6269 11 Apr 13 nicklas 35 REM End main program
6269 11 Apr 13 nicklas 36
6269 11 Apr 13 nicklas 37 REM Subroutine for adding an entry to CP
6269 11 Apr 13 nicklas 38 :addtocp
6269 11 Apr 13 nicklas 39 SET CP=%CP%;%1
6269 11 Apr 13 nicklas 40 GOTO :eof