buildbot success in ASF Buildbot on activemq-site-production

2016-01-17 Thread buildbot
The Buildbot has detected a restored build on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/4841

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on activemq-site-production

2016-01-17 Thread buildbot
The Buildbot has detected a new failure on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/4843

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





Jenkins build became unstable: ActiveMQ-Java8 » ActiveMQ :: RA #587

2016-01-17 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java8 #587

2016-01-17 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: ActiveMQ-Java8 » ActiveMQ :: Unit Tests #587

2016-01-17 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java7 » ActiveMQ :: Unit Tests #919

2016-01-17 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java7 #919

2016-01-17 Thread Apache Jenkins Server
See 



activemq git commit: Polished

2016-01-17 Thread davsclaus
Repository: activemq
Updated Branches:
  refs/heads/activemq-5.13.x 24a9fa79f -> d5101d46a


Polished


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/d5101d46
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/d5101d46
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/d5101d46

Branch: refs/heads/activemq-5.13.x
Commit: d5101d46a79ab6bd6bd4a547c90119865f490dfb
Parents: 24a9fa7
Author: Claus Ibsen 
Authored: Sun Jan 17 10:20:37 2016 +0100
Committer: Claus Ibsen 
Committed: Sun Jan 17 10:21:34 2016 +0100

--
 .../camel/component/ActiveMQComponent.java  | 29 ++--
 .../camel/component/ActiveMQConfiguration.java  |  8 +-
 2 files changed, 28 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/d5101d46/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
--
diff --git 
a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
 
b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
index 3826857..df38a00 100644
--- 
a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
+++ 
b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
@@ -35,6 +35,7 @@ import org.apache.camel.util.URISupport;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.jms.connection.SingleConnectionFactory;
+import org.springframework.jms.core.JmsTemplate;
 
 import javax.jms.Connection;
 
@@ -92,18 +93,28 @@ public class ActiveMQComponent extends JmsComponent 
implements EndpointCompleter
 setConfiguration(configuration);
 }
 
+/**
+ * Sets the broker URL to use to connect to ActiveMQ using the
+ * http://activemq.apache.org/configuring-transports.html;>ActiveMQ URI 
format
+ */
 public void setBrokerURL(String brokerURL) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setBrokerURL(brokerURL);
 }
 }
 
+/**
+ * Sets the username to be used to login to ActiveMQ
+ */
 public void setUserName(String userName) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 ((ActiveMQConfiguration)getConfiguration()).setUserName(userName);
 }
 }
 
+/**
+ * Sets the password/passcode used to login to ActiveMQ
+ */
 public void setPassword(String password) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 ((ActiveMQConfiguration)getConfiguration()).setPassword(password);
@@ -117,19 +128,33 @@ public class ActiveMQComponent extends JmsComponent 
implements EndpointCompleter
 /**
  * If enabled this will cause all Queues in the ActiveMQ broker to be 
eagerly populated into the CamelContext
  * so that they can be easily browsed by any Camel tooling. This option is 
disabled by default.
- *
- * @param exposeAllQueues
  */
 public void setExposeAllQueues(boolean exposeAllQueues) {
 this.exposeAllQueues = exposeAllQueues;
 }
 
+/**
+ * Enables or disables whether a PooledConnectionFactory will be used so 
that when
+ * messages are sent to ActiveMQ from outside of a message consuming 
thread, pooling will be used rather
+ * than the default with the Spring {@link JmsTemplate} which will create 
a new connection, session, producer
+ * for each message then close them all down again.
+ * 
+ * The default value is true. Note that this requires an extra dependency 
on commons-pool2.
+ */
 public void setUsePooledConnection(boolean usePooledConnection) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setUsePooledConnection(usePooledConnection);
 }
 }
 
+/**
+ * Enables or disables whether a Spring {@link SingleConnectionFactory} 
will be used so that when
+ * messages are sent to ActiveMQ from outside of a message consuming 
thread, pooling will be used rather
+ * than the default with the Spring {@link JmsTemplate} which will create 
a new connection, session, producer
+ * for each message then close them all down again.
+ * 
+ * The default value is false and a pooled connection is used by default.
+ */
 public void setUseSingleConnection(boolean useSingleConnection) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setUseSingleConnection(useSingleConnection);


activemq git commit: Polished

2016-01-17 Thread davsclaus
Repository: activemq
Updated Branches:
  refs/heads/master 4ea435bf4 -> df868fe4a


Polished


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/df868fe4
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/df868fe4
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/df868fe4

Branch: refs/heads/master
Commit: df868fe4a372054e0e02af2a1abae6e1160f1299
Parents: 4ea435b
Author: Claus Ibsen 
Authored: Sun Jan 17 10:20:37 2016 +0100
Committer: Claus Ibsen 
Committed: Sun Jan 17 10:20:37 2016 +0100

--
 .../camel/component/ActiveMQComponent.java  | 29 ++--
 .../camel/component/ActiveMQConfiguration.java  |  8 +-
 2 files changed, 28 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/df868fe4/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
--
diff --git 
a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
 
b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
index 3826857..df38a00 100644
--- 
a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
+++ 
b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQComponent.java
@@ -35,6 +35,7 @@ import org.apache.camel.util.URISupport;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.jms.connection.SingleConnectionFactory;
+import org.springframework.jms.core.JmsTemplate;
 
 import javax.jms.Connection;
 
@@ -92,18 +93,28 @@ public class ActiveMQComponent extends JmsComponent 
implements EndpointCompleter
 setConfiguration(configuration);
 }
 
+/**
+ * Sets the broker URL to use to connect to ActiveMQ using the
+ * http://activemq.apache.org/configuring-transports.html;>ActiveMQ URI 
format
+ */
 public void setBrokerURL(String brokerURL) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setBrokerURL(brokerURL);
 }
 }
 
+/**
+ * Sets the username to be used to login to ActiveMQ
+ */
 public void setUserName(String userName) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 ((ActiveMQConfiguration)getConfiguration()).setUserName(userName);
 }
 }
 
+/**
+ * Sets the password/passcode used to login to ActiveMQ
+ */
 public void setPassword(String password) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 ((ActiveMQConfiguration)getConfiguration()).setPassword(password);
@@ -117,19 +128,33 @@ public class ActiveMQComponent extends JmsComponent 
implements EndpointCompleter
 /**
  * If enabled this will cause all Queues in the ActiveMQ broker to be 
eagerly populated into the CamelContext
  * so that they can be easily browsed by any Camel tooling. This option is 
disabled by default.
- *
- * @param exposeAllQueues
  */
 public void setExposeAllQueues(boolean exposeAllQueues) {
 this.exposeAllQueues = exposeAllQueues;
 }
 
+/**
+ * Enables or disables whether a PooledConnectionFactory will be used so 
that when
+ * messages are sent to ActiveMQ from outside of a message consuming 
thread, pooling will be used rather
+ * than the default with the Spring {@link JmsTemplate} which will create 
a new connection, session, producer
+ * for each message then close them all down again.
+ * 
+ * The default value is true. Note that this requires an extra dependency 
on commons-pool2.
+ */
 public void setUsePooledConnection(boolean usePooledConnection) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setUsePooledConnection(usePooledConnection);
 }
 }
 
+/**
+ * Enables or disables whether a Spring {@link SingleConnectionFactory} 
will be used so that when
+ * messages are sent to ActiveMQ from outside of a message consuming 
thread, pooling will be used rather
+ * than the default with the Spring {@link JmsTemplate} which will create 
a new connection, session, producer
+ * for each message then close them all down again.
+ * 
+ * The default value is false and a pooled connection is used by default.
+ */
 public void setUseSingleConnection(boolean useSingleConnection) {
 if (getConfiguration() instanceof ActiveMQConfiguration) {
 
((ActiveMQConfiguration)getConfiguration()).setUseSingleConnection(useSingleConnection);


buildbot success in ASF Buildbot on activemq-site-production

2016-01-17 Thread buildbot
The Buildbot has detected a restored build on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/4833

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on activemq-site-production

2016-01-17 Thread buildbot
The Buildbot has detected a new failure on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/4834

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





Jenkins build is still unstable: ActiveMQ-Java7-All-UnitTests #326

2016-01-17 Thread Apache Jenkins Server
See