Sha256: 6a9570b5e76ea7521ebe0dc4162e3eb8e5a5eca0f828a42a1094bcfbf27d7b5f
Contents?: true
Size: 1.21 KB
Versions: 22
Compression:
Stored size: 1.21 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <project xmlns:ivy="antlib:org.apache.ivy.ant" name="traject-fetch-jars" default="prepare" basedir="."> <target name="prepare" depends="setup-ivy"> <mkdir dir="lib"/> <ivy:retrieve sync="true"/> </target> <target name="clean"> <delete dir="lib"/> </target> <property name="ivy.install.version" value="2.3.0"/> <property name="ivy.jar.dir" value="ivy"/> <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/> <available file="${ivy.jar.file}" property="skip.download"/> <target name="download-ivy" unless="skip.download"> <mkdir dir="${ivy.jar.dir}"/> <echo message="installing ivy..."/> <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" dest="${ivy.jar.file}" usetimestamp="true"/> </target> <target name="setup-ivy" depends="download-ivy" description="--> setup ivy"> <path id="ivy.lib.path"> <fileset dir="${ivy.jar.dir}" includes="*.jar"/> </path> <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/> </target> </project>
Version data entries
22 entries across 22 versions & 2 rubygems