source: main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/COMPILE.sh@ 34511

Last change on this file since 34511 was 34511, checked in by davidb, 3 years ago

Evolution of code away from Company model to one that uses RecordHashmap to represent the rows coming out of the JDBC database

  • Property svn:executable set to *
File size: 401 bytes
Line 
1#!/bin/bash
2
3webxml="WebContent/WEB-INF/web.xml"
4
5if [ "x$GSDL3HOME" = "x" ] ; then
6 echo "Error: Environment variable GSDL3HOME not set" >&2
7 echo " Unable to generate $webxml from $webxml.in" >&2
8 exit 1
9else
10 echo "****"
11 echo "* Regenerating $webxml from $webxml.in"
12 echo "****"
13 cat $webxml.in \
14 | sed "s%@GSDL3HOME@%$GSDL3HOME%g" \
15 > $webxml
16fi
17
18mvn install
19
Note: See TracBrowser for help on using the repository browser.