Skip to content

Commit

Permalink
Merge pull request #330 from tbeckham/ivy-install
Browse files Browse the repository at this point in the history
Eutester4j - Bootstrap Apache Ivy
  • Loading branch information
tbeckham committed Apr 9, 2015
2 parents c505ab3 + 2d9a923 commit fbcbd55
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions eutester4j/build.xml
Expand Up @@ -15,8 +15,14 @@
<!--youare sdk location link-->
<property name="YouAre" value="https://github.com/tbeckham/you-are-sdk/releases/download/alpha2/YouAreSDK.jar"/>

<!-- bootstrap-ivy -->
<target name="bootstrap-ivy" description="Install ivy">
<mkdir dir="${user.home}/.ant/lib"/>
<get dest="${user.home}/.ant/lib/ivy.jar" src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar"/>
</target>

<!-- download testng and AWS JAVA SDK -->
<target name="download-deps">
<target name="download-deps" depends="bootstrap-ivy">
<mkdir dir="${deps.dir}"/>
<ivy:retrieve conf="default" pattern="${deps.dir}/[artifact]-[revision].[ext]"/>
<echo message="fetching YouAre SDk..."/>
Expand Down Expand Up @@ -75,4 +81,4 @@

<!-- clean all, build and run tests -->
<target name="clean-all-build" depends="clean-all, runTestNG"/>
</project>
</project>

0 comments on commit fbcbd55

Please sign in to comment.