c0ad40cb0e
1.1-1jpp_1rh - RH vacuuming 1.1-1jpp - 1.1 - use perl instead of patch - don't build docs (build fails) 1.0-2jpp - update for JPackage 1.5 Wed Nov 13 2002 Ville Skyttä <ville.skytta at iki.fi> - 1.0-1jpp - Follow upstream changes, split out of xml-commons.
22 lines
507 B
Bash
22 lines
507 B
Bash
#!/bin/sh
|
|
#
|
|
# xml-commons-resolver xparse script
|
|
# JPackage Project (http://www.jpackage.org/)
|
|
# $Id: xml-commons-resolver-xparse.sh,v 1.1 2004/09/09 14:51:13 cvsdist Exp $
|
|
|
|
# Source functions library
|
|
. /usr/share/java-utils/java-functions
|
|
|
|
# Configuration
|
|
MAIN_CLASS=org.apache.xml.resolver.apps.xparse
|
|
BASE_JARS="xml-commons-resolver.jar xml-commons-apis.jar jaxp_parser_impl.jar"
|
|
|
|
# Set parameters
|
|
set_jvm
|
|
set_classpath $BASE_JARS
|
|
set_flags $BASE_FLAGS
|
|
set_options $BASE_OPTIONS
|
|
|
|
# Let's start
|
|
run "$@"
|