defined default task to use inherit ant tasks in sub folders

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@487313 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Willnauer 2006-12-14 19:25:43 +00:00
parent ad3ccde3a0
commit fb0c30d061
1 changed files with 7 additions and 1 deletions

View File

@ -17,7 +17,7 @@
-->
<project name="gdata-server" default="compile-core">
<project name="gdata-server" default="default">
<description>
Serverside Google Data API implementation
</description>
@ -110,6 +110,12 @@
<target name="war-gdata" depends="clean,jar-core">
<ant dir="src/core" target="war-gdata" inheritRefs="true" />
</target>
<target name="default" description="default" depends="download">
<ant dir="src/core" target="default" inheritRefs="true" />
<ant dir="src/hivemind" target="default" inheritRefs="true" />
<ant dir="src/gom" target="default" inheritRefs="true" />
</target>
</project>