You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/05/04 18:24:35 UTC

svn commit: r399751 - /incubator/activemq/trunk/assembly/maven.xml

Author: chirino
Date: Thu May  4 09:24:31 2006
New Revision: 399751

URL: http://svn.apache.org/viewcvs?rev=399751&view=rev
Log:
Include activemq-web-demo and activemq-web-console in the binary distroy example directory.

Modified:
    incubator/activemq/trunk/assembly/maven.xml

Modified: incubator/activemq/trunk/assembly/maven.xml
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/assembly/maven.xml?rev=399751&r1=399750&r2=399751&view=diff
==============================================================================
--- incubator/activemq/trunk/assembly/maven.xml (original)
+++ incubator/activemq/trunk/assembly/maven.xml Thu May  4 09:24:31 2006
@@ -184,6 +184,29 @@
         </ant:fileset>
       </ant:copy>
     </j:if>       
+
+    <!-- Copy example modules -->
+    <u:file var="file" name="${project.root}/activemq-web-console"/>
+    <j:if test="${file.exists()}">
+      <ant:copy todir="${maven.dist.bin.assembly.dir}/example/activemq-web-console">
+        <ant:fileset dir="${file}">
+          <ant:include name="**"/>
+          <ant:exclude name="target"/>
+        </ant:fileset>
+      </ant:copy>
+    </j:if>
+
+    <!-- Copy example modules -->
+    <u:file var="file" name="${project.root}/activemq-web-demo"/>
+    <j:if test="${file.exists()}">
+      <ant:copy todir="${maven.dist.bin.assembly.dir}/example/activemq-web-demo">
+        <ant:fileset dir="${file}">
+          <ant:include name="**"/>
+          <ant:exclude name="target"/>
+        </ant:fileset>
+      </ant:copy>
+    </j:if>
+
   </goal>
 
   <goal