You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ds...@apache.org on 2009/07/22 21:16:31 UTC

svn commit: r796839 - /felix/trunk/sigil/build.xml

Author: dsavage
Date: Wed Jul 22 19:16:31 2009
New Revision: 796839

URL: http://svn.apache.org/viewvc?rev=796839&view=rev
Log:
FELIX-1368
call bldcommon/prepare to set up external dependencies
fix clean and build targets so they perform logical actions for top level build

Modified:
    felix/trunk/sigil/build.xml

Modified: felix/trunk/sigil/build.xml
URL: http://svn.apache.org/viewvc/felix/trunk/sigil/build.xml?rev=796839&r1=796838&r2=796839&view=diff
==============================================================================
--- felix/trunk/sigil/build.xml (original)
+++ felix/trunk/sigil/build.xml Wed Jul 22 19:16:31 2009
@@ -17,11 +17,17 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project name="sigil" default="build-list">
+<project name="sigil" default="build">
   <import file="bldcommon/common.xml"/>
   <fileset id="my.projects" dir="${basedir}">
     <exclude name="ivy/**/${build_xml}"/>
     <exclude name="bldcommon/**/${build_xml}" />
     <include name="**/${build_xml}"/>
   </fileset>
+  <target name="init">
+    <subant buildpath="bldcommon/prepare" target="resolve" />
+  </target>
+
+  <target name="clean" depends="clean-list" />
+  <target name="build" depends="build-list" />
 </project>