diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-09-24 20:16:00 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-09-24 20:16:00 +0000 |
| commit | cbcb239474c989b1646c81e0e1e613f8758fa411 (patch) | |
| tree | 4a55185a0ac2a00874fbbd1c3a5d96544faa6659 /java/broker-plugins | |
| parent | bfd55b2084a8e407b3b786895431af687ef3a2f9 (diff) | |
| download | qpid-python-cbcb239474c989b1646c81e0e1e613f8758fa411.tar.gz | |
QPID-3504: add the Java broker bdbstore to the build as an optional module
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1175235 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker-plugins')
| -rw-r--r-- | java/broker-plugins/experimental/info/build.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/broker-plugins/experimental/info/build.xml b/java/broker-plugins/experimental/info/build.xml index c5881aa839..8f91adc5ff 100644 --- a/java/broker-plugins/experimental/info/build.xml +++ b/java/broker-plugins/experimental/info/build.xml @@ -20,7 +20,14 @@ nn - or more contributor license agreements. See the NOTICE file --> <project name="AMQ Broker Info Plugin" default="build"> - <property name="module.depends" value="common broker broker-plugins"/> + <condition property="info-plugin.optional.depends" value="bdbstore" else=""> + <and> + <contains string="${modules.opt}" substring="bdbstore"/> + <contains string="${profile}" substring="bdb"/> + </and> + </condition> + + <property name="module.depends" value="common broker broker-plugins ${info-plugin.optional.depends}"/> <property name="module.test.depends" value="test broker/test management/common client systests common/test"/> <property name="module.manifest" value="MANIFEST.MF"/> <property name="module.plugin" value="true"/> |
