summaryrefslogtreecommitdiff
path: root/qpid/java/common.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge from trunk tag to-cmake-25mar09 (r758432)Stephen D. Huston2009-03-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/cmake@758465 13f79535-47bb-0310-9956-ffa450edef68
* Only define cobertura task definition when it's about to get used.Aidan Skinner2009-01-071-2/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@732390 13f79535-47bb-0310-9956-ffa450edef68
* removed incubating from various shell scripts, release artifacts, and READMEsRafael H. Schloming2008-12-101-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@724948 13f79535-47bb-0310-9956-ffa450edef68
* made ant build generate perftest scriptsRafael H. Schloming2008-12-031-2/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@723029 13f79535-47bb-0310-9956-ffa450edef68
* updated version numbers and release notes for M4Rafael H. Schloming2008-11-151-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@714267 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1282: Add targets for cobertura coverage reporting.Aidan Skinner2008-09-121-2/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@694671 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1257 : Added ant help documentationMartin Ritchie2008-09-051-0/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@692463 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1257 : Add new build target 'release-bin' that will generate a broker ↵Martin Ritchie2008-09-051-0/+2
| | | | | | and client package. Documenation will be added to the wiki such that performance tests could also be packaged. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@692461 13f79535-47bb-0310-9956-ffa450edef68
* QPID-940,QPID-594,QPID-805,QPID-826 : Updated the client exception handling ↵Martin Ritchie2008-07-151-2/+14
| | | | | | | | | | | | | | | | | | | | | | so that exceptions are not lost. In performing the changes I noted that the AMQStateManager is only used for connection creation in the 08/09 codepath. Now this may be due to the fact that we don't currently need to wait on any other states. We need to improve our testing of error conditions for all protcol versions. Changes Summary: The MethodHandlers had their AMQStateManager parameters swapped for AMQSession as that is what they all cared about. The BlockingMethodFrameListener was used as a basis to create a generic BlockingWaiter which is now used by StateWaiter, There is probably scope to refactor the AMQStateManager and the parts of the AMQProtocolHandler that deal with the _frameListeners into a generic class but that can be looked at as part of a wider client refactor. Additionally tests were updated such as SimpleACLTest and ConnectionTest as they were expecting JMSExceptions from the constructor but the JMS API does not demand that and AMQExceptions are now correctly being thrown. The SimpleACLTest also required a change to AMQSession. The test calls send which will cause the connection to be closed asynchrously due to a permission violation. As this exception is not expected and is asynchorous to the client code it cannot be directly thrown. The solution is to record this exception in the AMQStateManager, it can tell that there are no waiters for the exception so it can record the value.(Potential exists to alert if the exception is overwritten but I don't think this is required right now) When the AMQSession checks that the connection is closed it is then possible to check if the current State is CLOSED and if we have an exception sitting in the AMQStateManager. If all these are true we can attach the AMQStateManager exception to the IllegalState Exception that is normally thrown when the Session is closed. This maintains JMS Compliance and allows us to discover the cause of the failure, SimpleACLTest was updated by removing the IllegalState catch section that was causing the test to silently fail. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@676978 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1176 : Updated Tasks and gentools build to use the java.source and ↵Martin Ritchie2008-07-151-2/+5
| | | | | | java.target values. Added echo statements to show the targeted build Updated other info echo statements to be an info level so they will not print with -q. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@676884 13f79535-47bb-0310-9956-ffa450edef68
* QPID-965: made the ant build report the cummulative success/failure of the ↵Rafael H. Schloming2008-05-141-0/+1
| | | | | | test suite git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@656357 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1028: updated report task for including all subdirsArnaud Simon2008-05-061-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@653731 13f79535-47bb-0310-9956-ffa450edef68
* This commit is for QPID-992 and QPID-993Rajith Muditha Attapattu2008-05-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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@652409 13f79535-47bb-0310-9956-ffa450edef68
* added help text for the clean-results targetRafael H. Schloming2008-02-121-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@620831 13f79535-47bb-0310-9956-ffa450edef68
* simplied QpidTestCase's interface for running non vm brokers and set up ↵Rafael H. Schloming2008-02-081-0/+5
| | | | | | build system to run cpp tests easily git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@619888 13f79535-47bb-0310-9956-ffa450edef68
* clear the report directory before generating test reportRafael H. Schloming2008-02-041-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@618450 13f79535-47bb-0310-9956-ffa450edef68
* added a detailed help target and cleaned up descriptionsRafael H. Schloming2008-02-011-0/+101
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@617662 13f79535-47bb-0310-9956-ffa450edef68
* ant build systemRafael H. Schloming2008-02-011-0/+97
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@617320 13f79535-47bb-0310-9956-ffa450edef68
* QPID-108: remove obsolete ant build filesStephen Vinoski2006-11-221-102/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@478023 13f79535-47bb-0310-9956-ffa450edef68
* update Apache licenses to the current versionStephen Vinoski2006-11-101-13/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@473568 13f79535-47bb-0310-9956-ffa450edef68
* Modified the generation of the root LICENSE.txt file to include references ↵Martin Ritchie2006-11-101-2/+1
| | | | | | to all other license files in the project. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@473536 13f79535-47bb-0310-9956-ffa450edef68
* QPID-74 Resolved some issues where a few new files were not addedMartin Ritchie2006-11-101-3/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@473345 13f79535-47bb-0310-9956-ffa450edef68
* QPID-78Martin Ritchie2006-11-101-3/+9
| | | | | | Added DISCLAIMER.txt LICENSE.txt and NOTICE.txt to the built jars git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@473331 13f79535-47bb-0310-9956-ffa450edef68
* QPID-75Martin Ritchie2006-11-091-0/+1
| | | | | | Created binary release archives. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@472879 13f79535-47bb-0310-9956-ffa450edef68
* QPID-74Martin Ritchie2006-11-091-3/+12
| | | | | | | | | Update to ant build system to generate source distribution. QPID-68 Changed split to ${path.separator} as there was no comments on the list against it. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@472860 13f79535-47bb-0310-9956-ffa450edef68
* QPID-74Martin Ritchie2006-11-081-2/+11
| | | | | | | | Update to ant build system to generate source distribution. The source distribution includes ALL Libs this is obviously not quite right. As we need to exclude those jars that are not compatible. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@472561 13f79535-47bb-0310-9956-ffa450edef68
* Import of qpid from etp:Rafael H. Schloming2006-09-191-0/+72
URL: https://etp.108.redhat.com/svn/etp/trunk/blaze Repository Root: https://etp.108.redhat.com/svn/etp Repository UUID: 06e15bec-b515-0410-bef0-cc27a458cf48 Revision: 608 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@447994 13f79535-47bb-0310-9956-ffa450edef68