aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/shell/run_h2_server
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/shell/run_h2_server')
-rwxr-xr-xsrc/main/shell/run_h2_server27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/shell/run_h2_server b/src/main/shell/run_h2_server
deleted file mode 100755
index 9b14e63..0000000
--- a/src/main/shell/run_h2_server
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-#
-# run_h2_server -- This script starts the H2 DB server with all necessary jar files.
-# It should be run in the directory containing the MDBC code.
-#
-
-POM=pom-h2server.xml
-
-if [ ! -f $POM ]
-then
- echo mk_jboss_module: Where is $POM?
- exit 1
-fi
-
-mvn -f $POM -Dmaven.test.skip=true install
-if [ $? != 0 ]
-then
- echo mk_jboss_module: maven failed...
- exit 1
-fi
-
-export CLASSPATH=$( mvn -f $POM dependency:build-classpath | grep -v INFO )
-echo CLASSPATH is:
-echo $CLASSPATH | tr : '\012'
-
-cd /tmp
-java org.h2.tools.Server