diff options
| author | Robert Gemmell <robbie@apache.org> | 2012-07-11 11:01:06 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2012-07-11 11:01:06 +0000 |
| commit | bf4878d834c41c4c6b90fa8ff327623a82495340 (patch) | |
| tree | 263e560833081d2c9fedd1f975647e328dbbb572 /qpid/java/broker-plugins/management-http/build.xml | |
| parent | e16f7d01e8a9c049dc99a08cd38634f174e2d41a (diff) | |
| download | qpid-python-bf4878d834c41c4c6b90fa8ff327623a82495340.tar.gz | |
QPID-3998, QPID-3999: System tests for Rest API, small fixups for the adapters and web ui.
Applied patch from Oleksandr Rudyy <orudyy@gmail.com>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1360121 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins/management-http/build.xml')
| -rw-r--r-- | qpid/java/broker-plugins/management-http/build.xml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/qpid/java/broker-plugins/management-http/build.xml b/qpid/java/broker-plugins/management-http/build.xml index bfcefee411..b792cb292e 100644 --- a/qpid/java/broker-plugins/management-http/build.xml +++ b/qpid/java/broker-plugins/management-http/build.xml @@ -17,9 +17,23 @@ - under the License. --> <project name="Qpid Broker-Plugins Management HTTP" default="build"> + + <condition property="systests.optional.depends" value="bdbstore" else=""> + <or> + <and> + <contains string="${modules.opt}" substring="bdbstore"/> + <contains string="${profile}" substring="bdb"/> + </and> + <and> + <istrue value="${optional}"/> + <contains string="${profile}" substring="bdb"/> + </and> + </or> + </condition> + <property name="module.depends" value="common broker" /> - <property name="module.test.depends" value="test broker/test common/test management/common" /> - + <property name="module.test.depends" value="systests test broker/test common/test management/common client ${systests.optional.depends}" /> + <property name="module.manifest" value="MANIFEST.MF" /> <property name="module.plugin" value="true" /> <property name="module.genpom" value="true"/> |
