Skip to content

Instantly share code, notes, and snippets.

@eduardolundgren
Created July 25, 2013 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduardolundgren/6084788 to your computer and use it in GitHub Desktop.
Save eduardolundgren/6084788 to your computer and use it in GitHub Desktop.
<if>
<and>
<isgreaterthan arg1="${ant.java.version}" arg2="1.5"/>
<or>
<equals arg1="${ant.java.version}" arg2="1.6" />
<and>
<equals arg1="${ant.java.version}" arg2="1.7" />
<islessthan arg1="${ant.update.version}" arg2="25"/>
</and>
</or>
</and>
<then>
<echo>Do it!</echo>
</then>
<else>
<echo>Don't do it!</echo>
</else>
</if>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment