You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@qpid.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2012/06/29 01:40:23 UTC

Build failed in Jenkins: Qpid-Java-Artefact-Release #462

See <https://builds.apache.org/job/Qpid-Java-Artefact-Release/462/changes>

Changes:

[shuston] Add missing include of qpid/framing/FieldValue.h. Fixes QPID-4097.

[robbie] QPID-3998, QPID-3999, QPID-4093: exclude missed Java-only test class from the CPP profile

[astitcher] QPID-4021: Badly behaved clients can still clog up the broker
Ameliorate the problem by only turning timeout off after receiving 3 frames
from the sender. This avoids an unauthenticed client causing a DoS by just
hanging before completing authentication in most cases.
This is far from a good fix, but should mostly avoid the issue until it can
be fixed in a neat way.

[aconway] NO-JIRA: Add missing EXTERN declarations needed by HA module.

[robbie] QPID-4093: work around ancient versions of Ant lacking 'erroronmissingdir' in the metainf element of the jar task by using copying to compose the files for addition to META-INF.

Also prevents general files in the modules resources dir that arent intended for inclusion in META-INF from being included there.

[robbie] QPID-3998, QPID-3999, QPID-4093: add new management plugins for jmx/rest/webui functionality, partial merge from the java-config-and-management branch at r1355039

[aconway] NO-JIRA: Get rid of noisy errors from rejected connections.

A HA backup broker used to reject client connections by throwing out of
ConnectionObserver:opened.  This is not an error, but generates a lot of noise
in the form of error log messages.  This patch calls Connection::abort() instead
of throwing, which does not leave any error log messages.

[robbie] QPID-4080: close initial connections after use rather than allowing them to fail over after we no longer need them, which causes them to sporadically expose QPID-4086 during teardown.

[rgodfrey] QPID-4091 : [Java Broker] correct handling of dtx set timeout

[rgodfrey] QPID-4091 : [Java Broker] correct handling of dtx set timeout

[aconway] NO-JIRA: ha_tests.py raise exception for errors in qpid-ha

Refactored qpid-ha to raise exceptions if invoked via main_except
and return non-0 with an error message if invoked as a script via main

[aconway] NO-JIRA: Make qmf/BrokerImportExport.h header public

QMF code generator templates include this header so it is required to build QMF
generated code against the -devel packages.

Review: https://reviews.apache.org/r/5593/

[gsim] NO-JIRA: ensure test cleans up when done to prevent interference with anything else

[chug] QPID-3902 force [Test] log category into test instance

[aconway] NO-JIRA: Fix build error on windows, introduced in r1352992

[gsim] NO-JIRA: increase test timeout

[kwall] QPID-4075: Exclude qmf_events from java/python tests

[robbie] QPID-4080: restore connectdelay to previous value and increase retries

[aconway] NO-JIRA: Trivial code cleanup, removing outdated FIXME comments.

[aconway] NO-JIRA: Simplify locking and remove member-update callback in HA code.

Get rid of the separate Membership lock and put HaBroker in control of
membership changes. Removes a potential deadlock which could explain
some observed failures in long-running failover tests.

[aconway] NO-JIRA: Cleanup in HA code.

- Better printed representation for queue ranges.
- Removed dead code in ha module related to activated/deactivated backups.
- Improved log messages in ha/BrokerReplicator.cpp

[aconway] QPID-4078: Fix primary self-connections in long running test.

Assert to detect self-connection were triggered in log runs of ha_tests.py
test_failover_send_receive. Fix:

- HaBroker close backup link before removing broker-info for outgoing link.
- HaBroker removes own address from failover addresses.
- Link.cpp: Skip ioThreadProcessing and maintenanceVisit on a link that is closed.
- Minor improvements to log messages and comments.

[aconway] QPID-3849: Client connection breaks broker-to-broker cluster SASL authentication 

Catch-up shadow connections were not being authenticated which caused two problems:
- new brokers failed to join the cluster if there was an authenticated session.
- possible security loophole that would allow an intruder to gain access to a catch-up broker.

All external connections are now fully authenticated, which solves both problems.

[gsim] QPID-4075: Added missing test file from last commit

[gsim] QPID-4075: Raise delete event for autodeleted queues also

[rgodfrey] QPID-4081: [Java Tests] Applied patch supplied by Alex Rudyy

[chug] NO-JIRA 0.18 release - add an EXTRA_DIST file required for windows builds

[aconway] QPID-4082: cluster de-sync after broker restart & queue replication

Having queue state replication between 2 clusters, restarting a broker in both
source+destination clusters sometimes leads to cluster de-sync. No QMF
communication is involved, though symptoms are similar to the bug caused by
missing propagation of QMF errors within a cluster.

The bug is caused by "deliveryCount" in SemanticState::ConsumerImpl
(qpid/broker/SemanticState.cpp) not being replicated to a joining cluster node
during catch-up. When the elder broker in src.cluster sends session.sync() after
sending 5 messages (per --ack 5 in qpid-route), the recently joiner node in
src.cluster does not do so, what leads to the cluster de-sync.

The patch:

 - adds to "consumer-state" method (see xml/cluster.xml file change) to update a new joi-ner a new property deliveryCount
 - updates cluster::Connection::consumerState to send deliveryCount to the method
 - updates cluster::Connection::consumerState to set the received deliveryCount
 - add two methods to broker::SemanticState::ConsumerImpl for getting and setting deliveryCount

[kwall] QPID-4080: [Java Broker] HA - Increase client connectdelay to allow test to be successful on slowe boxes

[gsim] QPID-3333: Patch 0015 from Anthony Foglia; better exception translation

[gsim] QPID-4076: Patch from Andy Goldstein, don't use infinite credit on bridges with explicit acknolwedgements

[chug] QPID-3902 log category - force log statement to be in test category and to display [Test] with no external processing.

[kgiusti] QPID-4063: remove spurious whitespace introduced in last commit.

[kgiusti] QPID-4063: allow configuration of source queue for exchange or dynamic routes

[aconway] NO-JIRA: Updates to HA documentation.

[aconway] QPID-4072: HA use backup messages in failover.

ReplicatingSubscription syncs the primary and backup queues, and does not
re-send messages that are already on the backup.

[aconway] NO-JIRA: Remove non-existing file windows/MemStat.cpp from ha.mk.

[aconway] QPID-3603: Fix & clean up in HA code.

- Fix fencepost error in getFirstSafe()
- QueueGuard::attach completes messages before the ReplicatingSubscription postion
- Fix minor test issues in brokertest.py and ha_test.py.
- ReplicatingSubscription check for ready in acknowledge not dispatch.
- HA test fix: retry wait_status retry on ConnectErrors, broker may not be up.

[aconway] QPID-3603: Minor cleanup and test improvements in HA code.

- Enabled 10 queue failover test
- Minor cleanup in types.h
- Rewording, adding comments.
- Detect and reject invalid replication values.
- Cleaned up some unnecessary #includes

[aconway] NO-JIRA: Remove non-existing file HeldQueue from ha.mk.

[gsim] QPID-4030: Check send rate actually achieved and report if it fails to match the desired rate

[tross] QPID-4060 - Fixed error in the help text.

[aconway] NO-JIRA: Added missing EXTERN declaration on broker::Link::getRemoteAddress

[cliffjansen] QPID-4071: basic porting changes for solaris native compiler

[chug] QPID-4022 C++ Broker connection limits corrections for cluster.
Never throw in event of shadow connection going over any limit and issue error messages describing cluster decisions.

[tross] QPID-4070 - Minor internal-api changes for LinkRegistry and Bridge (in qpid::broker)

[tross] QPID-4066 - Allow configuration to override the broker's federation tag

[kwall] QPID-4069: DistributedClientTest.testClientFailsToCreateProducerUsingInvalidSession occasionally seen to fail on CI

Test is seen to fail on slower CI boxes running persistent profiles.  From the logs, it can be seen that the
issue is timing. Extending receive timeout and sync'ing after the message ought to resolve the problem.

[kwall] QPID-4052: [Java Broker] Increase the number of retries that the client will use when trying to reconnect to the cluster.

[kwall] QPID-3977: ChartingUtil now generates chart-summary.html file to facilitate chart png browsing from CI server.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[kwall] QPID-3977: Add support for 3D bar/line charts; XY line charts, chart subtitles, and add Main-Class/Class-Path manifest entries to visualisation JAR to allow for convienient use from command line.

[kwall] QPID-4050: reduced verbosity of logging. Also removed unnecessary imports and casts in various perftests files.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[astitcher] QPID-4049: Linux C++ broker crashes when client connects SSL with expired certificate

[aconway] NO-JIRA: Fix build errors and warnings on windows in HA code.

[aconway] NO-JIRA: CMakeLists.txt: moved reference to pthread from HA link list to linux specific section.

[astitcher] NO-JIRA: Correct template to be strictly standards comformant (work with clang 3.1 & probably gcc 4.7)

[wprice] NO-JIRA: Simple fix to make JBoss7 compilation classpath generic

[aconway] QPID-3603: Bug fixes to HA code, passing test_failover_send_receive

- Updated HA logging messages to conform to new [Category] log format.
- QueueGuard fencepost error, set firstSafe correctly
- ReplicatingSubscription passing correct broker info to getGuard()
- Don't remove RemoteBackups on disconnect: fixes race where backup rejects connection but primary sees closed.

[tross] QPID-4065 - Remove the message's trace list during Queue::reRoute

[wprice] NO-JIRA:
    *Cleaned up JBoss7 configuration
    *Documentated cluster configuration for connection URL
    *Minor typo fixes

[aconway] NO-JIRA: Fix error in CMakeLists.txt to link ha library.

[tross] QPID-4061 - Added statistic: Number of unacknowledged messages in a session

[aconway] NO-JIRA: Fix errors in CMakeLists.txt for ha code.

------------------------------------------
[...truncated 9198 lines...]
release-bin:
     [echo] Running ant for module : broker-plugins/access-control
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

release-bin:
     [echo] Running ant for module : broker-plugins/firewall
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

release-bin:
     [echo] Running ant for module : broker-plugins/jmx
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

release-bin:
     [echo] Running ant for module : broker-plugins/management
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

release-bin:
     [echo] Running ant for module : bdbstore
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

release-bin:

release-mvn:
     [echo] Running ant for module : common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

compile_gentools:

compile:

check_gentool_deps:

gentools:

check_jython_deps:

jython:

check-version:

create-version:

build-version:

jms-selector:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:
[artifact:install] [INFO] Installing <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/lib/qpid-common-0.17.jar> to <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/maven-local-repo/org/apache/qpid/qpid-common/0.17-SNAPSHOT/qpid-common-0.17-SNAPSHOT.jar>
[artifact:deploy] Deploying to file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/common/release/maven>
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] Uploading: org/apache/qpid/qpid-common/0.17-SNAPSHOT/qpid-common-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/common/release/maven>
[artifact:deploy] Transferring 1329K from remote
[artifact:deploy] Uploaded 1329K
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-common' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-common'
[artifact:deploy] [INFO] Uploading project information for qpid-common 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-common:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-common/0.17-SNAPSHOT/qpid-common-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/common/release/maven>
[artifact:deploy] Transferring 984K from remote
[artifact:deploy] Uploaded 984K
     [echo] Running ant for module : management/common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : management/common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:
[artifact:install] [INFO] Installing <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/lib/qpid-management-common-0.17.jar> to <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/maven-local-repo/org/apache/qpid/qpid-management-common/0.17-SNAPSHOT/qpid-management-common-0.17-SNAPSHOT.jar>
[artifact:deploy] Deploying to file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/management/common/release/maven>
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-management-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] Uploading: org/apache/qpid/qpid-management-common/0.17-SNAPSHOT/qpid-management-common-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/management/common/release/maven>
[artifact:deploy] Transferring 50K from remote
[artifact:deploy] Uploaded 50K
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-management-common' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-management-common'
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-management-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-management-common:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Uploading project information for qpid-management-common 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-management-common/0.17-SNAPSHOT/qpid-management-common-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/management/common/release/maven>
[artifact:deploy] Transferring 54K from remote
[artifact:deploy] Uploaded 54K
     [echo] Running ant for module : amqp-1-0-common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : amqp-1-0-common
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:
[artifact:install] [INFO] Installing <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/lib/qpid-amqp-1-0-common-0.17.jar> to <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/maven-local-repo/org/apache/qpid/qpid-amqp-1-0-common/0.17-SNAPSHOT/qpid-amqp-1-0-common-0.17-SNAPSHOT.jar>
[artifact:deploy] Deploying to file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/amqp-1-0-common/release/maven>
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-amqp-1-0-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] Uploading: org/apache/qpid/qpid-amqp-1-0-common/0.17-SNAPSHOT/qpid-amqp-1-0-common-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/amqp-1-0-common/release/maven>
[artifact:deploy] Transferring 532K from remote
[artifact:deploy] Uploaded 532K
[artifact:deploy] [INFO] Uploading project information for qpid-amqp-1-0-common 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-amqp-1-0-common' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-amqp-1-0-common'
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-amqp-1-0-common:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-amqp-1-0-common:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-amqp-1-0-common/0.17-SNAPSHOT/qpid-amqp-1-0-common-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/amqp-1-0-common/release/maven>
[artifact:deploy] Transferring 373K from remote
[artifact:deploy] Uploaded 373K
     [echo] Running ant for module : broker
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:
     [java] unable to locate xml for lib/required/jetty-server-7.6.3.v20120416.jar

BUILD FAILED
<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build.xml>:76: The following error occurred while executing this line:
<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build.xml>:64: The following error occurred while executing this line:
<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/module.xml>:225: The following error occurred while executing this line:
<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/common.xml>:186: Java returned: 1

Total time: 2 minutes 25 seconds
Build step 'Invoke Ant' marked build as failure
Archiving artifacts

Build failed in Jenkins: Qpid-Java-Artefact-Release #463

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/Qpid-Java-Artefact-Release/463/changes>

Changes:

[kwall] QPID-4099: Fix race condition in test FailoverBehaviourTest.testFlowControlFlagResetOnFailover

[robbie] QPID-4098: update POM generation for the plugins to mark the dependencies as being provided (by the broker itself) at runtime

[robbie] QPID-4098: generate maven release artifacts for the broker plugins

[robbie] QPID-3998: add dependency stubs for jetty components to fix the POM generation, ensuring the same set of deps gets composed as those that end up in the broker binary package

[robbie] QPID-3999: add logo image which was missed during previous commit

[kwall] QPID-4094: Qpid MC misformats JMX notification dates

Fix date format string so date is properly formatted to the 24 hour clock.

------------------------------------------
[...truncated 9869 lines...]
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-firewall/0.17-SNAPSHOT/qpid-broker-plugins-firewall-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/firewall/release/maven>
[artifact:deploy] Transferring 31K from remote
[artifact:deploy] Uploaded 31K
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-firewall' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-firewall'
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-firewall:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-firewall:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Uploading project information for qpid-broker-plugins-firewall 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-firewall/0.17-SNAPSHOT/qpid-broker-plugins-firewall-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/firewall/release/maven>
[artifact:deploy] Transferring 27K from remote
[artifact:deploy] Uploaded 27K
     [echo] Running ant for module : broker-plugins/jmx
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : broker-plugins/jmx
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:
[artifact:install] [INFO] Installing <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/lib/plugins/qpid-broker-plugins-jmx-0.17.jar> to <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/maven-local-repo/org/apache/qpid/qpid-broker-plugins-jmx/0.17-SNAPSHOT/qpid-broker-plugins-jmx-0.17-SNAPSHOT.jar>
[artifact:deploy] Deploying to file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/jmx/release/maven>
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-jmx:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-jmx/0.17-SNAPSHOT/qpid-broker-plugins-jmx-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/jmx/release/maven>
[artifact:deploy] Transferring 102K from remote
[artifact:deploy] Uploaded 102K
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-jmx:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-jmx:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-jmx' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-jmx'
[artifact:deploy] [INFO] Uploading project information for qpid-broker-plugins-jmx 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-jmx/0.17-SNAPSHOT/qpid-broker-plugins-jmx-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/jmx/release/maven>
[artifact:deploy] Transferring 71K from remote
[artifact:deploy] Uploaded 71K
     [echo] Running ant for module : broker-plugins/management
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : broker-plugins/management
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

precompile:
    [unwar] Expanding: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/lib/required/dojo-war-1.7.2.war> into <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/broker-plugins/management/classes/resources/dojo>

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:
[artifact:install] [INFO] Installing <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/lib/plugins/qpid-broker-plugins-management-0.17.jar> to <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/maven-local-repo/org/apache/qpid/qpid-broker-plugins-management/0.17-SNAPSHOT/qpid-broker-plugins-management-0.17-SNAPSHOT.jar>
[artifact:deploy] Deploying to file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/management/release/maven>
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-management:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-management/0.17-SNAPSHOT/qpid-broker-plugins-management-0.17-SNAPSHOT.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/management/release/maven>
[artifact:deploy] Transferring 5129K from remote
[artifact:deploy] Uploaded 5129K
[artifact:deploy] [INFO] Uploading project information for qpid-broker-plugins-management 0.17-SNAPSHOT
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-management:0.17-SNAPSHOT' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'snapshot org.apache.qpid:qpid-broker-plugins-management:0.17-SNAPSHOT'
[artifact:deploy] [INFO] Retrieving previous metadata from remote
[artifact:deploy] [INFO] repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-management' could not be found on repository: remote, so will be created
[artifact:deploy] [INFO] Uploading repository metadata for: 'artifact org.apache.qpid:qpid-broker-plugins-management'
[artifact:deploy] [INFO] Retrieving previous build number from remote
[artifact:deploy] Uploading: org/apache/qpid/qpid-broker-plugins-management/0.17-SNAPSHOT/qpid-broker-plugins-management-0.17-SNAPSHOT-sources.jar to repository remote at file://<https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/broker-plugins/management/release/maven>
[artifact:deploy] Transferring 51K from remote
[artifact:deploy] Uploaded 51K
     [echo] Running ant for module : bdbstore
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

prepare:

pom:

release-mvn:
     [echo] Running ant for module : bdbstore
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

check-request-props:
     [echo] Running ant for module : bdbstore
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/build/scratch/test-java-mms.0-10.properties>

bdb-licence-note:
     [echo] *NOTE* The BDB JE library required by this optional module is licensed under the Sleepycat Licence, which is not compatible with the Apache Licence v2.0.
     [echo] 
     [echo] For a copy of the Sleepycat Licence, please see:
     [echo] http://www.oracle.com/technetwork/database/berkeleydb/downloads/jeoslicense-086837.html

download-ivy:

load-ivy:

configure-ivy:
[ivy:configure] :: Ivy 2.2.0 - 20100923230623 :: http://ant.apache.org/ivy/ ::
[ivy:configure] :: loading settings :: file = <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/ivysettings.retrieve.xml>

download-bdb:
     [echo] Resolving and retrieving dependencies...
[ivy:resolve] :: resolving dependencies :: org/apache#qpid;0.17
[ivy:resolve] 	confs: [bdbje]
[ivy:resolve] 	found com.sleepycat#je;5.0.55 in oracle
[ivy:resolve] :: resolution report :: resolve 60ms :: artifacts dl 1ms
	---------------------------------------------------------------------
	|                  |            modules            ||   artifacts   |
	|       conf       | number| search|dwnlded|evicted|| number|dwnlded|
	---------------------------------------------------------------------
	|       bdbje      |   1   |   0   |   0   |   0   ||   1   |   0   |
	---------------------------------------------------------------------
[ivy:retrieve] :: retrieving :: org/apache#qpid [sync]
[ivy:retrieve] 	confs: [bdbje]
[ivy:retrieve] 	0 artifacts copied, 1 already retrieved (0kB/3ms)

check-bdb-jar:

bdb-licence-note-optional:

bdb-jar-required:

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

copy-store-to-upgrade:

postbuild:

module.build:

build:
java.lang.OutOfMemoryError: PermGen space
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0xf6c31c8a, pid=15738, tid=4136741744
#
# JRE version: 6.0_27-b07
# Java VM: Java HotSpot(TM) Server VM (20.2-b06 mixed mode linux-x86 )
# Problematic frame:
# V  [libjvm.so+0x2f0c8a]  constantPoolOopDesc::klass_at_impl(constantPoolHandle, int, Thread*)+0x1a
#
# An error report file with more information is saved as:
# <https://builds.apache.org/job/Qpid-Java-Artefact-Release/ws/trunk/qpid/java/hs_err_pid15738.log>
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#
Build step 'Invoke Ant' marked build as failure
Archiving artifacts