svn commit: rev 21164 - avalon/trunk/central/system/build
| Newsgroups | gmane.comp.jakarta.avalon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mcconnell Date: Sun Jun 13 08:40:13 2004 New Revision: 21164 Added: avalon/trunk/central/system/build/integrity.xml (contents, props changed) Log: add build file that does a sanity check from the top-level build Added: avalon/trunk/central/system/build/integrity.xml ============================================================================== --- (empty file) +++ avalon/trunk/central/system/build/integrity.xml Sun Jun 13 08:40:13 2004 @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<project name="integrity" default="check-for-project" basedir="." xmlns:x="antlib:org.apache.avalon.tools"> + + <available property="project.available" classname="org.apache.avalon.tools.home.Home"/> + + <target name="check-for-project" unless="project.available"> + <echo> +#-------------------------------------------------------------------------------- +# Please invoke the bootstrap target in order to install prerequisite resources +# and tools necessary to build avalon. +# +# $ ant bootstrap +# +# Once the bootstrap resources have been build you can proceed with any of the +# classic build targets. +#-------------------------------------------------------------------------------- + </echo> + <fail message="Bootstrap resources not present."/> + </target> + +</project>