diff options
Diffstat (limited to 'java/systests/build.xml')
-rw-r--r-- | java/systests/build.xml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/java/systests/build.xml b/java/systests/build.xml index 1da0a6d355..fb2bae1d47 100644 --- a/java/systests/build.xml +++ b/java/systests/build.xml @@ -19,10 +19,18 @@ 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="**/TTLTest.java,**/DropInTest.java,**/TestClientControlledTest.java"/> + value="**/DropInTest.java,**/TestClientControlledTest.java"/> <import file="../module.xml"/> |