Correct the dependencies in the XMLBeans download and compilation process (so that download is not done if the xbean.jar and jsr173.jar properties already point to an installation)

This commit is contained in:
inonit%inonit.com 2007-04-24 21:49:43 +00:00
Родитель 26f3b3fa40
Коммит 48a4545c1e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,8 @@
<get src="${xmlbeans.url}" dest="${xmlbeans.zip}" ignoreerrors="true" />
</target>
<target name="xmlbeans-unzip" depends="xmlbeans-get" unless="xmlbeans-present?">
<target name="xmlbeans-unzip" unless="xmlbeans-present?">
<antcall target="xmlbeans-get" />
<unzip src="${xmlbeans.zip}" dest="${xmlbeans.tmp}" />
<copy tofile="${xbean.jar}" file="${xmlbeans.tmp}/xmlbeans-2.2.0/lib/xbean.jar" />
<copy tofile="${jsr173.jar}" file="${xmlbeans.tmp}/xmlbeans-2.2.0/lib/jsr173_1.0_api.jar" />