Your preferences have been saved!
» Condition for file change - <?xml version="1.0"?> <project name="Apache Ant Properties Project" default="compile" basedir=".">   <fileset dir="." id="uptodate.id">     <include name="src/jstl/One.java"/>   </fileset>   <property name="jstl.src" value="jstl"/>   <property name="jstl.jar" value="jstl.jar"/>        <condition property="jstl.src.exists">     <available file="${jstl.src}" filepath="./src"/>... 16 Feb 12 » Specify condition - <?xml version="1.0"?> <project name="Apache Ant Properties Project" default="do-windows" basedir=".">   <condition property="is.windows">     <os family="windows"/>   </condition>   <condition property="is.unix">     <os family="unix"/>   </condition>   <target name="do-windows" if="is.windows">     <echo message="This is Windows"/>... 16 Feb 12 » Target based on condition - <?xml version="1.0"?> <project name="Apache Ant Properties Project" default="do-windows" basedir=".">   <condition property="is.windows">     <os family="windows"/>   </condition>   <condition property="is.unix">     <os family="unix"/>   </condition>   <target name="do-windows" if="is.windows">     <echo message="This is Windows"/>... 16 Feb 12