Include activemq-web-demo and activemq-web-console in the binary distroy example directory.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@399751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-05-04 16:24:31 +00:00
parent 6e329f7d9e
commit e25461641e
1 changed files with 23 additions and 0 deletions

View File

@ -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