Commit 824912cd authored by Matt Tucker's avatar Matt Tucker Committed by matt

Allow Java 1.6.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6604 b35dd754-fafc-0310-a699-88a17e54d16e
parent 26a7981f
......@@ -212,7 +212,10 @@
</condition>
<condition property="java.not.ok" value="true">
<not>
<contains string="${ant.java.version}" substring="1.5"/>
<or>
<contains string="${ant.java.version}" substring="1.5"/>
<contains string="${ant.java.version}" substring="1.6"/>
</or>
</not>
</condition>
<fail if="ant.not.ok" message="Must use Ant 1.6.x or 1.7.x to build Wildfire"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment