Skip to content

Commit

Permalink
Merge pull request scala#4746 from sschaef/update-ant-build
Browse files Browse the repository at this point in the history
Abort Ant build if Ant version is <1.9
  • Loading branch information
lrytz committed Sep 16, 2015
2 parents bb52b24 + 15c2381 commit 224efeb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,11 @@ TODO:
</condition>

<fail if="has.unsupported.jdk" message="JDK ${ant.java.version} is not supported by this build!"/>
<fail message="Ant 1.9+ required">
<condition>
<not><antversion atleast="1.9" /></not>
</condition>
</fail>

<!-- Allow this to be overridden simply -->
<property name="sbt.latest.version" value="0.12.4"/>
Expand Down

0 comments on commit 224efeb

Please sign in to comment.