You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cd...@apache.org on 2006/12/31 05:09:47 UTC

svn commit: r491380 - /portals/pluto/trunk/dist-build.xml

Author: cdoremus
Date: Sat Dec 30 20:09:47 2006
New Revision: 491380

URL: http://svn.apache.org/viewvc?view=rev&rev=491380
Log:
Added maven builds for pluto-util and pluto-ant-tasks in move-pluto-ant-tasks target.

Modified:
    portals/pluto/trunk/dist-build.xml

Modified: portals/pluto/trunk/dist-build.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/dist-build.xml?view=diff&rev=491380&r1=491379&r2=491380
==============================================================================
--- portals/pluto/trunk/dist-build.xml (original)
+++ portals/pluto/trunk/dist-build.xml Sat Dec 30 20:09:47 2006
@@ -204,6 +204,12 @@
 	</target>
 	
 	<target name="move-ant-task" description="Moves Ant task jar into the distribution">
+		<exec executable="mvn" vmlauncher="false" dir="${basedir}/pluto-util">
+			<arg line="install"/>
+		</exec>
+		<exec executable="mvn" vmlauncher="false" dir="${basedir}/pluto-ant-tasks">
+			<arg line="install"/>
+		</exec>
 		<copy file="${user.dir}/pluto-ant-tasks/target/pluto-ant-tasks-${pluto.version}.jar" todir="${dist.dir}"/>	
 	</target>