summaryrefslogtreecommitdiff
path: root/java/broker-plugins
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2008-05-01 00:03:23 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2008-05-01 00:03:23 +0000
commit4ccccf0495d3b2e447ca8e6a3b173b189d52ea33 (patch)
tree092e8f1c0710375934667ad10abd52edec184ad7 /java/broker-plugins
parenta2b413c1c0bea044d0c82ac3e1a99de5036761d1 (diff)
downloadqpid-python-4ccccf0495d3b2e447ca8e6a3b173b189d52ea33.tar.gz
This commit is for QPID-992 and QPID-993
build.xml ========== I added the broker-plugins as a module to the ant build system. This was nessacery to get the plugins jar generated for QPID-993. In general when we add extra exchanges as plugins we want release this as a separate jar common.xml ========== Added a property build.plugins. This is used to create the plugins dir that is used for PluginTest noted in QPID-993. module.xml ========== Creats the folder identified by build.plugins copys the plugins jar to the above folder before the tests are run Added the following system properties when running tests "example.plugin.target" to build.plugins - required for QPID-993 "QPID_EXAMPLE_HOME" and "QPID_HOME" is to project.root/broker to pick up the config files in etc - required for QPID-992. build.deps ========== added common libs and felix libs for the broker-plugins module. This is for QPID-993 acl.config.xml ============== Added TempQueue as a routing key allowed for publish to amq.direct for user "server" This was done for QPID-992 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652409 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker-plugins')
-rw-r--r--java/broker-plugins/build.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/java/broker-plugins/build.xml b/java/broker-plugins/build.xml
new file mode 100644
index 0000000000..669eadd2e8
--- /dev/null
+++ b/java/broker-plugins/build.xml
@@ -0,0 +1,27 @@
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+nn - or more contributor license agreements. See the NOTICE file
+ -n distributed with this work for additional information
+ - regarding copyright ownership. The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied. See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+ -->
+<project name="AMQ Broker-Plugins" default="build">
+ <property name="module.depends" value="client broker common junit-toolkit"/>
+ <property name="module.dist" value="false"/>
+ <property name="module.vm.version" value="1.5"/>
+ <import file="../module.xml"/>
+
+</project>