22 lines
498 B
Bash
22 lines
498 B
Bash
#!/bin/sh
|
|
#
|
|
# xml-commons-resolver xread script
|
|
# JPackage Project (http://www.jpackage.org/)
|
|
# $Id: xml-commons-resolver-xread.sh,v 1.1.2.1 2004/03/03 15:01:33 fche Exp $
|
|
|
|
# Source functions library
|
|
. /usr/share/java-utils/java-functions
|
|
|
|
# Configuration
|
|
MAIN_CLASS=org.apache.xml.resolver.apps.xread
|
|
BASE_JARS="xml-commons-resolver.jar xml-commons-apis.jar xerces-j2.jar"
|
|
|
|
# Set parameters
|
|
set_jvm
|
|
set_classpath $BASE_JARS
|
|
set_flags $BASE_FLAGS
|
|
set_options $BASE_OPTIONS
|
|
|
|
# Let's start
|
|
run "$@"
|