Commit 75b762f0 authored by Benjamin Sherman's avatar Benjamin Sherman Committed by benjamin

OF-180 - fix build.xml to bypass clustering plugin, allowing CI builds.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11514 b35dd754-fafc-0310-a699-88a17e54d16e
parent 9df7f702
...@@ -1230,7 +1230,15 @@ ...@@ -1230,7 +1230,15 @@
<!-- For each plugin in the main src dir, call the 'buildplugin' macro --> <!-- For each plugin in the main src dir, call the 'buildplugin' macro -->
<for list="${dirlist}" param="plugin" trim="true"> <for list="${dirlist}" param="plugin" trim="true">
<sequential> <sequential>
<buildplugin plugin="@{plugin}" pluginsrc="${plugin.src.dir}"/> <if>
<equals arg1="@{plugin}" arg2="clustering"/>
<then>
<echo message="bypassing clustering plugin, build via single plugin target if needed"/>
</then>
<else>
<buildplugin plugin="@{plugin}" pluginsrc="${plugin.src.dir}"/>
</else>
</if>
</sequential> </sequential>
</for> </for>
...@@ -1248,7 +1256,15 @@ ...@@ -1248,7 +1256,15 @@
<!-- For each list of plugins in the dev dir call the 'buildplugin' macro --> <!-- For each list of plugins in the dev dir call the 'buildplugin' macro -->
<for list="${dirlist2}" param="plugin" trim="true"> <for list="${dirlist2}" param="plugin" trim="true">
<sequential> <sequential>
<buildplugin plugin="@{plugin}" pluginsrc="${plugin.dev.dir}"/> <if>
<equals arg1="@{plugin}" arg2="clustering"/>
<then>
<echo message="bypassing clustering plugin, build via single plugin target if needed"/>
</then>
<else>
<buildplugin plugin="@{plugin}" pluginsrc="${plugin.dev.dir}"/>
</else>
</if>
</sequential> </sequential>
</for> </for>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment