diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-08-16 11:07:04 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-08-16 11:07:04 +0000 |
| commit | a037dbf505ed39472c1ce436faf1bece22334be1 (patch) | |
| tree | 3f53235e3893d3afdf747ce751c873be306bb562 /qpid/java/bdbstore | |
| parent | 2bc8d87a2fe3e8b1140b7c3499a85527aa3a63d7 (diff) | |
| download | qpid-python-a037dbf505ed39472c1ce436faf1bece22334be1.tar.gz | |
QPID-5074: update broker binary release tar process to handle plugins with dependencies, fix issues with generated poms
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1514654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/bdbstore')
| -rw-r--r-- | qpid/java/bdbstore/build.xml | 7 | ||||
| -rw-r--r-- | qpid/java/bdbstore/jmx/build.xml | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/qpid/java/bdbstore/build.xml b/qpid/java/bdbstore/build.xml index 4209cfcfbd..a74457d9ad 100644 --- a/qpid/java/bdbstore/build.xml +++ b/qpid/java/bdbstore/build.xml @@ -22,6 +22,8 @@ <property name="module.genpom" value="true"/> <property name="module.genpom.args" value="-Sqpid-common=provided -Sqpid-broker=provided -Sqpid-broker-plugins-amqp-0-8-protocol=provided -Sje=provided"/> + <property name="broker.plugin" value="true"/> + <import file="../module.xml" /> <condition property="download.bdb.jar"> @@ -79,4 +81,9 @@ http://www.oracle.com/technetwork/database/berkeleydb/downloads/jeoslicense-0868 <target name="build" depends="check-request-props, bdb-jar-required, module.build" /> + <!-- Overrides, target in module.xml --> + <target name="copy-broker-plugin-jars-deps" if="broker.plugin" description="copy broker plugins dependencies for use in release packaging"> + <!-- NO-OP, we explicitly do not want to copy the dependencies for this optional functionality as we can't distribute them --> + </target> + </project> diff --git a/qpid/java/bdbstore/jmx/build.xml b/qpid/java/bdbstore/jmx/build.xml index 5f3654c6c5..898eac9070 100644 --- a/qpid/java/bdbstore/jmx/build.xml +++ b/qpid/java/bdbstore/jmx/build.xml @@ -28,4 +28,9 @@ <import file="../../module.xml" /> <target name="bundle" depends="bundle-tasks" /> + + <!-- Overrides target in module.xml --> + <target name="copy-broker-plugin-jars-deps" if="broker.plugin" description="copy broker plugins dependencies for use in release packaging"> + <!-- NO-OP, we explicitly do not want to copy the dependencies for this optional functionality as we can't distribute them --> + </target> </project> |
