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 1.0 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.8.0" />
  18. <antversion exactly="1.7.1" />
  19. </not>
  20. </condition>
  21. Should be exactly 1.8.0
  22. </fail>
  23. </target>
  24. <target name="testatleastfail">
  25. <property name="version" value="1.8.9" />
  26. <fail>
  27. <condition>
  28. <not>
  29. <antversion atleast="1.9.0" />
  30. </not>
  31. </condition>
  32. Should be at least 1.9.0
  33. </fail>
  34. </target>
  35. <target name="testexactlyfail">
  36. <property name="version" value="1.8.0" />
  37. <fail>
  38. <condition>
  39. <not>
  40. <antversion exactly="1.9.0" />
  41. </not>
  42. </condition>
  43. Should be exactly 1.9.0
  44. </fail>
  45. </target>
  46. </project>