You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

antversion.xml 965 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project name="testantversion" default="testatleast">
  3. <target name="testatleast">
  4. <fail>
  5. <condition>
  6. <not>
  7. <antversion atleast="1.7" />
  8. </not>
  9. </condition>
  10. Should be at least 1.7
  11. </fail>
  12. </target>
  13. <target name="testexactly">
  14. <fail>
  15. <condition>
  16. <not>
  17. <antversion exactly="1.7.1" />
  18. </not>
  19. </condition>
  20. Should be exactly 1.7.1
  21. </fail>
  22. </target>
  23. <target name="testatleastfail">
  24. <property name="version" value="1.8.9" />
  25. <fail>
  26. <condition>
  27. <not>
  28. <antversion atleast="1.9.0" />
  29. </not>
  30. </condition>
  31. Should be at least 1.9.0
  32. </fail>
  33. </target>
  34. <target name="testexactlyfail">
  35. <property name="version" value="1.8.0" />
  36. <fail>
  37. <condition>
  38. <not>
  39. <antversion exactly="1.9.0" />
  40. </not>
  41. </condition>
  42. Should be exactly 1.9.0
  43. </fail>
  44. </target>
  45. </project>