At 09:38 AM 02-05-01 +0200, Stefan Bodewig wrote:
>Robert Leftwich <[EMAIL PROTECTED]> wrote:
>
> > b) Fail the build if JAVA_HOME or ant.java.version is not correct -
> > but the only way I can find to do that is to write a script
> > (javascript/netrexx/etc) that checks the value and adds a target (or
> > enables a target) that does the fail - this seems overly complex.
>
>You can get away without scripting.
>
><target name="check-version">
>   <available property="jdk1.3+" classname="java.lang.StrictMath" />
></target>
>
><target name="ensure-1.3" depends="check-version" unless="jdk1.3+">
>   <fail>Can only build if running in a JDK 1.3 VM</fail>
></target>
>
>and make all your targets depend on the ensure-1.3 target

Thanks, I like this a lot better than my 1.3 specific solution. Out with 
the old and in with the new!

Robert


Reply via email to