diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2013-06-24 15:37:57 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2013-06-24 15:37:57 +0000 |
| commit | 0920024e3b0ccae42e180e5d432714f013fd4eb3 (patch) | |
| tree | 65acbeb44a8c2c5261a0fcf055265147ee22b3b9 /qpid/java/build.xml | |
| parent | 31b9cc15ef54b61a14867e308a8d60208d4dec81 (diff) | |
| download | qpid-python-0920024e3b0ccae42e180e5d432714f013fd4eb3.tar.gz | |
QPID-4837 : [Java Broker] add ability to use connection pool for JDBC store
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1496099 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/build.xml')
| -rw-r--r-- | qpid/java/build.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/qpid/java/build.xml b/qpid/java/build.xml index 37cee98b08..5d2269d2d4 100644 --- a/qpid/java/build.xml +++ b/qpid/java/build.xml @@ -22,14 +22,17 @@ <import file="common.xml"/> - <findSubProjects name="broker-plugins" dir="broker-plugins"/> - <findSubProjects name="client-plugins" dir="client-plugins"/> - <property name="optional" value="false"/> <property name="modules.opt.default" value="bdbstore bdbstore/jmx perftests/visualisation-jfc"/> <condition property="modules.opt" value="" else="${modules.opt.default}"> <isfalse value="${optional}"/> </condition> + <condition property="broker-plugins-exclude" value="jdbc-provider-bone" else=""> + <isfalse value="${optional}"/> + </condition> + + <findSubProjects name="broker-plugins" dir="broker-plugins" excludes="${broker-plugins-exclude}"/> + <findSubProjects name="client-plugins" dir="client-plugins"/> <property name="modules.core" value="common management/common amqp-1-0-common broker client amqp-1-0-client amqp-1-0-client-jms tools"/> <property name="modules.examples" value="client/example management/example amqp-1-0-client/example amqp-1-0-client-jms/example"/> |
