blob: f4818bcc570db121c4206c3989760c9f3b7a9259 [file] [log] [blame]
#!/bin/bash
# This script is executed before the Tycho build begins, once checkout occurred
# and versions have been set straight.
#
DATE=`date`
ANT=/auto/tigerstripe/local/ant/bin/ant
# Changes are only to be made to the target hierarchy (or else they're not seen
# by Tycho since Tycho builds that !)
cd target
# Run javadoc in core plugin so it gets packaged up as part of the documentation
echo "Running Javadoc in org.eclipse.tigerstripe.workbench.base"
cd plugins/org.eclipse.tigerstripe.workbench.base
$ANT -f javadoc.xml
echo "Running Javadoc in org.eclipse.tigerstripe.annotation.core"
cd ../org.eclipse.tigerstripe.annotation.core
$ANT -f javadoc.xml
cd ../..