Skip to content

Commit

Permalink
[CLEANUP] - Added dev-resolve target to resolve libs without having t…
Browse files Browse the repository at this point in the history
…o rebuild everything.
  • Loading branch information
tmorgner committed Mar 24, 2014
1 parent 91d42e9 commit c3f4f23
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .idea/ant.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions dev_build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,22 @@
</ant>
</target>

<target name="dev-resolve"
description="Call resolve on all modules to easily populate the lib-directories of all sub-modules."
depends="install-antcontrib">
<for list="${dev-project.list}" param="module" trim="true">
<sequential>
<ant antfile="build.xml" dir="@{module}" inheritall="false" >
<property name="ivy.use.symlinks" value="false"/>
<target name="resolve" />
</ant>
</sequential>
</for>
<ant antfile="assembly.xml" dir="${assembly.dir}" inheritall="false">
<target name="resolve" />
</ant>
</target>


<target name="clean-all" depends="install-antcontrib">
<for list="${dev-project.list}" param="module" trim="true">
Expand Down

0 comments on commit c3f4f23

Please sign in to comment.