blob: b9cf6abe684ba5e92bdf86af97b2e346fee7e8bf [file] [log] [blame]
#*******************************************************************************
# Copyright (c) 2005, 2007 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# IBM Corporation - initial API and implementation
#*******************************************************************************
#!/bin/sh
set +v
#Script to run WebService Ant tasks in headless Eclipse mode
echo "Setting environment variables"
# The JRE java.exe to be used
JAVAEXE=/home/tester/sunjdk/j2sdk1.4.2_06/bin/java
# The Eclipse The Eclipse Equinox Launcher jar. Usually in eclipse/plugins/org.eclipse.equinox.launcher*.jar
LAUNCHER_JAR=/root/wtp/eclipse/plugins/org.eclipse.equinox.launcher_1.0.0.v20070208a.jar
# The location of your workspace
WORKSPACE=/home/tester/workspace_1116b
run() {
set -v
$JAVAEXE -jar $LAUNCHER_JAR -application org.eclipse.ant.core.antRunner -data $WORKSPACE -file wsgen.xml $ls > wsgen.txt 2>&1
}
if [ ! -e $JAVAEXE ]; then
echo "ERROR: incorrect java.exe=$JAVAEXE, edit the script and correct the JAVAEXE environment variable";
exit 1;
fi
if [ ! -e $LAUNCHER_JAR ]; then
echo "ERROR: incorrect launcher=$LAUNCHER_JAR, edit the script and correct the LAUNCHER_JAR environment variable";
exit 1;
fi
run
exit 0