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/08/02 15:44:42 UTC

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

Author: dsavage
Date: Sun Aug  2 13:44:42 2009
New Revision: 800075

URL: http://svn.apache.org/viewvc?rev=800075&view=rev
Log:
update default target to dist, build ivy resources as part of 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=800075&r1=800074&r2=800075&view=diff
==============================================================================
--- felix/trunk/sigil/build.xml (original)
+++ felix/trunk/sigil/build.xml Sun Aug  2 13:44:42 2009
@@ -17,7 +17,7 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project name="sigil" default="build" 
+<project name="sigil" default="dist" 
   xmlns:ivy="antlib:org.apache.ivy.ant">
   <import file="bldcommon/common.xml"/>
   <fileset id="my.projects" dir="${basedir}">
@@ -30,8 +30,19 @@
     <subant buildpath="bldcommon/prepare" target="resolve" />
   </target>
 
-  <target name="clean" depends="clean-list, clean-site" />
-  <target name="build" depends="build-list" />
+  <target name="dist" depends="build, site" />
+
+  <target name="clean" depends="clean-list, clean-site, clean-ivy" />
+
+  <target name="build" depends="build-list, build-ivy" />
+
+  <target name="build-ivy">
+    <subant buildpath="ivy/resolver" />
+  </target>
+
+  <target name="clean-ivy">
+    <subant buildpath="ivy/resolver" target="clean" />
+  </target>
 
   <target name="site" depends="common-init">
     <ivy:retrieve organisation="org.apache" module="felix.sigil.common.core" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>