summaryrefslogtreecommitdiff
path: root/java/build.xml
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2013-06-24 15:37:57 +0000
committerRobert Godfrey <rgodfrey@apache.org>2013-06-24 15:37:57 +0000
commitc9525ea9354f8d150e6fc9c0ccce5befca3e04ca (patch)
tree112817db40dd563d11c993fb4cbdb83554a58962 /java/build.xml
parent5e1eadc2bf147852e33a813135755e9dc72752da (diff)
downloadqpid-python-c9525ea9354f8d150e6fc9c0ccce5befca3e04ca.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/qpid@1496099 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/build.xml')
-rw-r--r--java/build.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/java/build.xml b/java/build.xml
index 37cee98b08..5d2269d2d4 100644
--- a/java/build.xml
+++ b/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"/>