source: trunk/bin/set_classpath.bat @ 4473

Last change on this file since 4473 was 4473, checked in by Jari Häkkinen, 15 years ago

Addresses #1106. Moving to GPLv3 in chunked commits.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1@echo off
2REM $Id: set_classpath.bat 4473 2008-09-05 15:12:31Z jari $
3REM
4REM Copyright (C) 2006, 2007 Nicklas Nordborg
5REM
6REM This file is part of BASE - BioArray Software Environment.
7REM Available at http://base.thep.lu.se/
8REM
9REM BASE is free software; you can redistribute it and/or modify it
10REM under the terms of the GNU General Public License as published by
11REM the Free Software Foundation; either version 3 of the License, or
12REM (at your option) any later version.
13REM
14REM BASE is distributed in the hope that it will be useful, but
15REM WITHOUT ANY WARRANTY; without even the implied warranty of
16REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17REM General Public License for more details.
18REM
19REM You should have received a copy of the GNU General Public License
20REM along with this program; if not, write to the Free Software
21REM Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22REM 02111-1307, USA.
23REM ----------------------------------------
24
25SET WEBINF=..\www\WEB-INF
26
27REM Base2 configuration files and non-packaged class files
28SET CP=%WEBINF%\classes
29
30REM All WEB-INF/lib files
31FOR %%i IN (%WEBINF%\lib\*.jar) DO (CALL :addtocp %%i)
32
33GOTO :eof
34REM End main program
35
36REM Subroutine for adding an entry to CP
37:addtocp
38SET CP=%CP%;%1
39GOTO :eof
Note: See TracBrowser for help on using the repository browser.