-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrifDataLoaderTool.bat
53 lines (50 loc) · 1.96 KB
/
rifDataLoaderTool.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ECHO OFF
REM ************************************************************************
REM
REM Description:
REM
REM Rapid Enquiry Facility (RIF) - Build RIF web serices and dataloader using Maven
REM
REM Copyright:
REM
REM The Rapid Inquiry Facility (RIF) is an automated tool devised by SAHSU
REM that rapidly addresses epidemiological and public health questions using
REM routinely collected health and population data and generates standardised
REM rates and relative risks for any given health outcome, for specified age
REM and year ranges, for any given geographical area.
REM
REM Copyright 2014 Imperial College London, developed by the Small Area
REM Health Statistics Unit. The work of the Small Area Health Statistics Unit
REM is funded by the Public Health England as part of the MRC-PHE Centre for
REM Environment and Health. Funding for this project has also been received
REM from the Centers for Disease Control and Prevention.
REM
REM This file is part of the Rapid Inquiry Facility (RIF) project.
REM RIF is free software: you can redistribute it and/or modify
REM it under the terms of the GNU Lesser General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM RIF is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU Lesser General Public License for more details.
REM
REM You should have received a copy of the GNU Lesser General Public License
REM along with RIF. If not, see <http://www.gnu.org/licenses/>; or write
REM to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
REM Boston, MA 02110-1301 USA
REM
REM Author:
REM
REM Margaret Douglass, Peter Hambly, SAHSU
REM
REM Usage: java_build.bat
REM
ECHO ON
call java -jar rifDataLoaderTool-jar-with-dependencies.jar
if %errorlevel% neq 0 (
exit /b 1
)
REM
REM Eof