Permalink
Browse files
Point build.xml to 0-1 deps zip.
- Loading branch information...
Showing
with
3 additions
and
3 deletions.
-
+3
−3
build.xml
|
|
@@ -2,9 +2,8 @@ |
|
|
<description>Pack all sources into a JAR.</description>
|
|
|
|
|
|
<property name="jarfile" location="ring.jar"/>
|
|
|
- <property name="depsfile" location="deps.zip"/>
|
|
|
- <property name="depsurl"
|
|
|
- value="http://cloud.github.com/downloads/mmcgrana/ring/deps.zip"/>
|
|
|
+ <property name="depsfile" location="deps-0-1-unstable.zip"/>
|
|
|
+ <property name="depsurl" value="http://cloud.github.com/downloads/mmcgrana/ring/deps-0-1-unstable.zip"/>
|
|
|
<property name="depsdir" location="deps/"/>
|
|
|
|
|
|
<target name="clean" description="Remove generated files and directories.">
|
|
|
@@ -25,5 +24,6 @@ |
|
|
<get usetimestamp="true" description="Ring dependencies."
|
|
|
src="${depsurl}" dest="${depsfile}"/>
|
|
|
<unzip src="${depsfile}" dest="."/>
|
|
|
+ <delete file="${depsfile}"/>
|
|
|
</target>
|
|
|
</project>
|
0 comments on commit
5497a81