summaryrefslogtreecommitdiff
path: root/java/broker/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/broker/build.xml')
-rw-r--r--java/broker/build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/java/broker/build.xml b/java/broker/build.xml
index f22972384d..f192892b03 100644
--- a/java/broker/build.xml
+++ b/java/broker/build.xml
@@ -72,6 +72,12 @@
<fixcrlf srcdir="${module.release}/bin" fixlast="true" eol="dos" includes="*.bat"/>
</target>
- <target name="release-bin" depends="release-bin-tasks"/>
+ <target name="copy-broker-plugins-release" description="copy broker-plugins into module release">
+ <copy todir="${module.release}/lib/plugins" failonerror="true">
+ <fileset dir="${build.lib}/plugins"/>
+ </copy>
+ </target>
+
+ <target name="release-bin" depends="release-bin-tasks, copy-broker-plugins-release"/>
</project>