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

build-ivy.xml 964B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project name="DMDirc-ivy" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
  3. <description>Ivy utilities for DMDirc</description>
  4. <property name="ivy.cache.ttl.default" value="7d"/>
  5. <target name="-init-ivy" depends="-init-lib-directory">
  6. <path id="ivy.classpath">
  7. <fileset dir="etc/ivy" includes="ivy*.jar"/>
  8. </path>
  9. <available classname="org.apache.ivy.ant.IvyConfigure"
  10. property="ivy.available" classpathref="ivy.classpath" />
  11. </target>
  12. <target name="-init-dependencies" depends="-init-ivy" unless="ivy.done">
  13. <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.classpath"/>
  14. <ivy:settings file="etc/ivy/ivysettings.xml"/>
  15. <ivy:retrieve symlink="true" pattern="lib/[conf]/[artifact].[ext]" sync="true" />
  16. <property name="ivy.done" value="true"/>
  17. </target>
  18. </project>