Skip to content

Commit

Permalink
build only has to download ivy once now
Browse files Browse the repository at this point in the history
  • Loading branch information
lynus committed Jul 20, 2016
1 parent df3d71d commit 49df782
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2435,8 +2435,10 @@
<typefound uri="antlib:org.apache.ivy.ant" name="cleancache"/>
</condition>
</target>

<target name="ivy-download" description="To download ivy" unless="offline">
<target name="ivy exists">
<available property="ivy.exists" file="${ivy.jar}" />
</target>
<target name="ivy-download" description="To download ivy" unless="ivy.exists">
<get src="${ivy_repo_url}" dest="${ivy.jar}" usetimestamp="true"/>
</target>

Expand Down

0 comments on commit 49df782

Please sign in to comment.