Author: ekoneil Date: Thu Jan 27 08:14:06 2005 New Revision: 126621 URL: http://svn.apache.org/viewcvs?view=rev&rev=126621 Log: Build spew goes on a diet.
Now only spews when there's a version mismatch, and the Ant / Java / Beehive home directories and Beehive version are now printed through "ant check.setup". BB: self DRT: none Modified: incubator/beehive/trunk/build.xml Modified: incubator/beehive/trunk/build.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/build.xml?view=diff&rev=126621&p1=incubator/beehive/trunk/build.xml&r1=126620&p2=incubator/beehive/trunk/build.xml&r2=126621 ============================================================================== --- incubator/beehive/trunk/build.xml (original) +++ incubator/beehive/trunk/build.xml Thu Jan 27 08:14:06 2005 @@ -175,6 +175,13 @@ </target> <target name="check.setup"> + <echo> +java.home = ${java.home} +ant.home = ${ant.home} +beehive.home = ${beehive.home} +beehive.version = ${beehive.version} + </echo> + <available file="${jsr173.jar}" type="file" property="jsr173.available"/> <fail unless="jsr173.available" message="The JSR 173 JAR does not appear to be installed. Be sure to run "ant bootstrap"."/> <echo>JSR 173 is installed correctly as ${jsr173.jar}</echo>
