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 | 4f16012afa83507eca6400ec4e912fef19483a49 (patch) | |
| tree | 0a9ee4d437af65c0b07032a8dc7456fa3017a30c /qpid/java/systests/build.xml | |
| parent | 17c0147dc010adc05aa503c2e907ca722d7b32b4 (diff) | |
| download | qpid-python-4f16012afa83507eca6400ec4e912fef19483a49.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@1175235 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/build.xml')
| -rw-r--r-- | qpid/java/systests/build.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qpid/java/systests/build.xml b/qpid/java/systests/build.xml index 33ad2227bb..fb2bae1d47 100644 --- a/qpid/java/systests/build.xml +++ b/qpid/java/systests/build.xml @@ -19,7 +19,15 @@ nn - or more contributor license agreements. See the NOTICE file - --> <project name="System Tests" default="build"> - <property name="module.depends" value="client management/tools/qpid-cli management/common broker broker/test common common/test junit-toolkit"/> + + <condition property="systests.optional.depends" value="bdbstore" else=""> + <and> + <contains string="${modules.opt}" substring="bdbstore"/> + <contains string="${profile}" substring="bdb"/> + </and> + </condition> + + <property name="module.depends" value="client management/common broker broker/test common common/test junit-toolkit ${systests.optional.depends}"/> <property name="module.test.src" location="src/main/java"/> <property name="module.test.excludes" value="**/DropInTest.java,**/TestClientControlledTest.java"/> |
