From 0a53c6b6068d6281e860f6435b5ca84d08a1dc63 Mon Sep 17 00:00:00 2001
From: Peter Reilly
-<condition propery="legal-password">
+<condition property="legal-password">
<matches pattern="[1-9]" string="${user-input}"/>
</condition>
<fail message="Your password should at least contain one number"
@@ -881,5 +881,37 @@ must match. Since Ant 1.7
singleline="false"/>
</au:assertFalse>
++ Test the ant version. + Since Ant 1.7.0
+ +| Attribute | +Description | +Required | +
| atleast | +The version that this at least. + The format is major.minor.point. | +One of these. | +
| exactly | +The version that this ant is exactly. + The format is major.minor.point. | +
+ An example: +
++<condition property="ant-is-exact-7"> + <antversion exactly="1.7.0"/> +</condition> +