Skip to content

Commit

Permalink
shared-resources is now required by dashboard and eXide.
Browse files Browse the repository at this point in the history
svn path=/trunk/eXist/; revision=17504
  • Loading branch information
wolfgangmm committed Nov 5, 2012
1 parent 2a19945 commit ef7b726
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build.compiler=modern
build.compiler.source=1.6
build.compiler.target=1.6

autodeploy=dashboard-0.1.xar,eXide-1.0.xar
autodeploy=shared-resources-0.1.xar,dashboard-0.1.xar,eXide-1.0.xar
autodeploy.repo=http://demo.exist-db.org/exist/apps/public-repo/public/
use.autodeploy.feature=true

Expand Down
11 changes: 8 additions & 3 deletions build/scripts/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,16 @@
<!--
Download xar files from the package website.
-->
<target name="setup" depends="prepare" description="Download standard xar packages." if="autostart-empty">
<foreach list="${autodeploy}" target="download-xar" param="xar"></foreach>
<target name="setup" depends="prepare" description="Download standard xar packages.">
<foreach list="${autodeploy}" target="download" param="xar"></foreach>
</target>

<target name="download-xar">
<target name="download">
<available file="${autostart-dir}/${xar}" property="xar-installed"/>
<antcall target="download-xar"/>
</target>

<target name="download-xar" unless="xar-installed">

<taskdef name="fetch" classname="nl.ow.dilemma.ant.fetch.FetchTask">
<classpath>
Expand Down

0 comments on commit ef7b726

Please sign in to comment.