buildbot success in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a restored build on builder camel-site-production 
while building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11301

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

Buildslave for this Build: bb-cms-slave

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

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a new failure on builder camel-site-production while 
building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11300

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

Buildslave for this Build: bb-cms-slave

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

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





buildbot success in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a restored build on builder camel-site-production 
while building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11295

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

Buildslave for this Build: bb-cms-slave

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

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a new failure on builder camel-site-production while 
building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11294

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

Buildslave for this Build: bb-cms-slave

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

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





camel git commit: Remove unused suppress warning

2016-10-12 Thread davsclaus
Repository: camel
Updated Branches:
  refs/heads/master 4d917dfd5 -> 6be5a6f0d


Remove unused suppress warning

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

Branch: refs/heads/master
Commit: 6be5a6f0d9bd3b856e96f03e02b29f73970145f1
Parents: 4d917df
Author: Aurélien Pupier 
Authored: Wed Oct 12 13:45:21 2016 +0200
Committer: GitHub 
Committed: Wed Oct 12 13:45:21 2016 +0200

--
 .../catalog/src/main/java/org/apache/camel/catalog/URISupport.java  | 1 -
 1 file changed, 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/6be5a6f0/platforms/catalog/src/main/java/org/apache/camel/catalog/URISupport.java
--
diff --git 
a/platforms/catalog/src/main/java/org/apache/camel/catalog/URISupport.java 
b/platforms/catalog/src/main/java/org/apache/camel/catalog/URISupport.java
index a62523e..f3fe621 100644
--- a/platforms/catalog/src/main/java/org/apache/camel/catalog/URISupport.java
+++ b/platforms/catalog/src/main/java/org/apache/camel/catalog/URISupport.java
@@ -300,7 +300,6 @@ public final class URISupport {
  * @return a query string with key1=value=value2&..., or an 
empty string if there is no options.
  * @throws URISyntaxException is thrown if uri has invalid syntax.
  */
-@SuppressWarnings("unchecked")
 public static String createQueryString(Map options, String 
ampersand, boolean encode) throws URISyntaxException {
 try {
 if (options.size() > 0) {



[2/3] camel git commit: added null check before trying to call containsKey (prevent NPE)

2016-10-12 Thread acosentino
added null check before trying to call containsKey (prevent NPE)


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

Branch: refs/heads/camel-2.16.x
Commit: 0fd28e19e514412f82e27c91397e533ad266b610
Parents: a212a42
Author: Michael Lück 
Authored: Wed Oct 5 15:22:51 2016 +0200
Committer: Andrea Cosentino 
Committed: Wed Oct 12 13:02:48 2016 +0200

--
 .../aggregate/hazelcast/HazelcastAggregationRepository.java   | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/0fd28e19/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
--
diff --git 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
index a1bb1cd..04ff1dc 100644
--- 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
+++ 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
@@ -295,7 +295,10 @@ public class HazelcastAggregationRepository extends 
ServiceSupport
  * @param key Object - key in question
  */
 public boolean containsKey(Object key){
+  if(cache != null)
 return cache.containsKey(key);
+  else
+return false;
 }
 
 /**



[1/3] camel git commit: added method to check for key existence

2016-10-12 Thread acosentino
Repository: camel
Updated Branches:
  refs/heads/camel-2.16.x 3e1c3a62b -> b93b773c0


added method to check for key existence


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

Branch: refs/heads/camel-2.16.x
Commit: a212a42365e204af4201118c5e1ae266c7e2b030
Parents: 3e1c3a6
Author: Michael Lück 
Authored: Tue Oct 4 11:18:04 2016 +0200
Committer: Andrea Cosentino 
Committed: Wed Oct 12 13:02:18 2016 +0200

--
 .../aggregate/hazelcast/HazelcastAggregationRepository.java | 9 +
 1 file changed, 9 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/a212a423/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
--
diff --git 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
index e4a6723..a1bb1cd 100644
--- 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
+++ 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
@@ -288,6 +288,15 @@ public class HazelcastAggregationRepository extends 
ServiceSupport
 public Exchange get(CamelContext camelContext, String key) {
 return unmarshallExchange(camelContext, cache.get(key));
 }
+
+/**
+ * Checks if the key in question is in the repository.
+ * 
+ * @param key Object - key in question
+ */
+public boolean containsKey(Object key){
+return cache.containsKey(key);
+}
 
 /**
  * This method performs transactional operation on removing the {@code 
exchange}



[3/3] camel git commit: Fixed CS

2016-10-12 Thread acosentino
Fixed CS


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

Branch: refs/heads/camel-2.16.x
Commit: b93b773c0a515dcde38f1ad6e42da2fc9e43da2b
Parents: 0fd28e1
Author: Andrea Cosentino 
Authored: Tue Oct 11 09:54:45 2016 +0200
Committer: Andrea Cosentino 
Committed: Wed Oct 12 13:05:33 2016 +0200

--
 .../hazelcast/HazelcastAggregationRepository.java| 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/b93b773c/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
--
diff --git 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
index 04ff1dc..ea2325e 100644
--- 
a/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
+++ 
b/components/camel-hazelcast/src/main/java/org/apache/camel/processor/aggregate/hazelcast/HazelcastAggregationRepository.java
@@ -294,11 +294,12 @@ public class HazelcastAggregationRepository extends 
ServiceSupport
  * 
  * @param key Object - key in question
  */
-public boolean containsKey(Object key){
-  if(cache != null)
-return cache.containsKey(key);
-  else
-return false;
+public boolean containsKey(Object key) {
+if (cache != null) {
+return cache.containsKey(key);
+} else {
+return false;
+}
 }
 
 /**



buildbot success in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a restored build on builder camel-site-production 
while building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11291

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

Buildslave for this Build: bb-cms-slave

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

Build succeeded!

Sincerely,
 -The Buildbot





[1/2] camel git commit: CAMEL-10376 BeanInfo should prefer implementation methods instead of bridged methods

2016-10-12 Thread davsclaus
Repository: camel
Updated Branches:
  refs/heads/master ab3e17b73 -> 4d917dfd5


CAMEL-10376 BeanInfo should prefer implementation methods instead of bridged 
methods


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

Branch: refs/heads/master
Commit: 8f0c15413369d245314fe27f34ea16c1ebc854e2
Parents: ab3e17b
Author: Babur Duisenov 
Authored: Mon Oct 10 15:46:09 2016 +0200
Committer: Claus Ibsen 
Committed: Wed Oct 12 12:57:33 2016 +0200

--
 .../apache/camel/component/bean/BeanInfo.java   | 18 +++--
 .../bean/BeanInfoWithBridgedMethodTest.java | 71 
 2 files changed, 85 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/8f0c1541/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
--
diff --git 
a/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java 
b/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
index 87be7ee..1fc4404 100644
--- a/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
+++ b/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
@@ -328,13 +328,18 @@ public class BeanInfo {
 }
 
 Set overrides = new HashSet();
-Set bridges = new HashSet();
 
 // do not remove duplicates form class from the Java itself as they 
have some "duplicates" we need
 boolean javaClass = clazz.getName().startsWith("java.") || 
clazz.getName().startsWith("javax.");
 if (!javaClass) {
 // it may have duplicate methods already, even from declared or 
from interfaces + declared
 for (Method source : methods) {
+
+// skip bridge methods in duplicate checks (as the bridge 
method is inserted by the compiler due to type erasure)
+if (source.isBridge()) {
+continue;
+}
+
 for (Method target : methods) {
 // skip ourselves
 if (ObjectHelper.isOverridingMethod(source, target, true)) 
{
@@ -354,10 +359,15 @@ public class BeanInfo {
 if (Modifier.isPublic(clazz.getModifiers())) {
 // add additional interface methods
 List extraMethods = getInterfaceMethods(clazz);
-for (Method target : extraMethods) {
-for (Method source : methods) {
+for (Method source : extraMethods) {
+for (Method target : methods) {
 if (ObjectHelper.isOverridingMethod(source, target, 
false)) {
-overrides.add(target);
+overrides.add(source);
+}
+}
+for (Method target : methodMap.keySet()) {
+if (ObjectHelper.isOverridingMethod(source, target, 
false)) {
+overrides.add(source);
 }
 }
 }

http://git-wip-us.apache.org/repos/asf/camel/blob/8f0c1541/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
--
diff --git 
a/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
 
b/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
new file mode 100644
index 000..813c11e
--- /dev/null
+++ 
b/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
@@ -0,0 +1,71 @@
+package org.apache.camel.component.bean;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.Service;
+import org.apache.camel.impl.DefaultExchange;
+
+/**
+ * Unit test for bridged methods.
+ */
+public class BeanInfoWithBridgedMethodTest extends ContextTestSupport {
+
+public void testBridgedMethod() throws Exception {
+BeanInfo beanInfo = new BeanInfo(context, MyService.class);
+
+DefaultExchange exchange = new DefaultExchange(context);
+exchange.getIn().setBody(new Request(1));
+
+try {
+MyService myService = new MyService();
+MethodInvocation mi = beanInfo.createInvocation(null, exchange);
+assertEquals("MyService", 
mi.getMethod().getDeclaringClass().getSimpleName());
+assertEquals(2, mi.getMethod().invoke(myService, new Request(1)));
+} catch (AmbiguousMethodCallException e) {
+fail("This should not be ambiguous!");
+}
+}
+
+public void testPackagePrivate() 

[2/2] camel git commit: Fixed CS. This closes #1204

2016-10-12 Thread davsclaus
Fixed CS. This closes #1204


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

Branch: refs/heads/master
Commit: 4d917dfd521693db85c29ea6272092d8c9279f42
Parents: 8f0c154
Author: Claus Ibsen 
Authored: Wed Oct 12 13:01:26 2016 +0200
Committer: Claus Ibsen 
Committed: Wed Oct 12 13:01:26 2016 +0200

--
 .../bean/BeanInfoWithBridgedMethodTest.java | 16 
 1 file changed, 16 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/4d917dfd/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
--
diff --git 
a/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
 
b/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
index 813c11e..61db8ec 100644
--- 
a/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
+++ 
b/camel-core/src/test/java/org/apache/camel/component/bean/BeanInfoWithBridgedMethodTest.java
@@ -1,3 +1,19 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file 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.
+ */
 package org.apache.camel.component.bean;
 
 import org.apache.camel.ContextTestSupport;



buildbot failure in on camel-site-production

2016-10-12 Thread buildbot
The Buildbot has detected a new failure on builder camel-site-production while 
building . Full details are available at:
https://ci.apache.org/builders/camel-site-production/builds/11290

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

Buildslave for this Build: bb-cms-slave

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

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





camel git commit: Minor improvements to camel-zipkin docs

2016-10-12 Thread acosentino
Repository: camel
Updated Branches:
  refs/heads/camel-2.18.x 8965cad85 -> 467ded8f3


Minor improvements to camel-zipkin docs


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

Branch: refs/heads/camel-2.18.x
Commit: 467ded8f388e85df728927d0b0c3f7fb87fb89d4
Parents: 8965cad
Author: James Netherton 
Authored: Wed Oct 12 09:22:15 2016 +0100
Committer: Andrea Cosentino 
Committed: Wed Oct 12 11:45:59 2016 +0200

--
 .../camel-zipkin/src/main/docs/zipkin.adoc  | 72 ++--
 1 file changed, 35 insertions(+), 37 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/467ded8f/components/camel-zipkin/src/main/docs/zipkin.adoc
--
diff --git a/components/camel-zipkin/src/main/docs/zipkin.adoc 
b/components/camel-zipkin/src/main/docs/zipkin.adoc
index 369517b..b8eaaab 100644
--- a/components/camel-zipkin/src/main/docs/zipkin.adoc
+++ b/components/camel-zipkin/src/main/docs/zipkin.adoc
@@ -10,7 +10,7 @@ outgoing Camel messages using http://zipkin.io/[zipkin].
 Events (span) are captured for incoming and outgoing messages being sent
 to/from Camel.
 
-This means you need to configure which which Camel endpoints that maps
+This means you need to configure which Camel endpoints map
 to zipkin service names.
 
 The mapping can be configured using:
@@ -18,20 +18,20 @@ The mapping can be configured using:
 * route id - A Camel route id
 * endpoint url - A Camel endpoint url
 
-For both kinds you can use wildcards and regular expressions to match,
-which is using the rules from link:intercept.html[Intercept].
+For both kinds you can match using wildcards and regular expressions,
+using the rules from link:intercept.html[Intercept].
 
 To match all Camel messages you can use * in the pattern and configure
 that to the same service name.
 
-If no mapping has been configured then Camel will fallback and use
+If no mapping has been configured, Camel will fallback and use
 endpoint uri's as service names.  +
-However its recommended to configure service mappings so you can use
-human logic names instead of Camel endpoint uris in the names.
+However, it's recommended to configure service mappings so you can use
+human-readable names instead of Camel endpoint uris in the names.
 
-Camel will auto-configure a ScribeSpanCollector if no SpanCollector
-explicit has been configured, and if the hostname and port to the span
-collector has been configured as environment variables:
+Camel will auto-configure a ScribeSpanCollector if no spanCollector has been
+explicitly configured, or if the following SpanCollector hostname and port 
environment variables
+have been configured:
 
 * ZIPKIN_COLLECTOR_THRIFT_SERVICE_HOST - The hostname
 * ZIPKIN_COLLECTOR_THRIFT_SERVICE_PORT - The port number
@@ -69,7 +69,7 @@ value is the service name. The pattern uses the rules from 
link:intercept.html[I
 messages that matches the pattern. The content is a Set where the key 
is a pattern. The pattern
 uses the rules from link:intercept.html[Intercept].
 
-|includeMessageBody |false |Whether to include the Camel message body in the 
zipkin traces. 
+|includeMessageBody |false |Whether to include the Camel message body in the 
zipkin traces.
 This is not recommended for production usage, or when having big
 payloads. You can limit the size by configuring the
 link:how-do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html[max
@@ -92,18 +92,17 @@ To enable camel-zipkin you need to configure first
 [source,java]
 
--
 ZipkinTracer zipkin = new ZipkinTracer();
-// configure the scribe span collector with the hostname and port for the 
Zipkin Collector Server 
+// configure the scribe span collector with the hostname and port for the 
Zipkin Collector Server
 zipkin.setSpanCollector(new ScribeSpanCollector("192.168.90.100", 9410);
 // and then add zipkin to the CamelContext
 zipkin.init(camelContext);
 
--
 
-The configuration about will the trace all incoming and outgoing
+The configuration above will trace all incoming and outgoing
 messages in Camel routes. 
 
-To use ZipinTracer in XML all you need to do is to setup scribe an the
-zipkin tracer as  and then they are automatic discovered and used
-by Camel.
+To use ZipkinTracer in XML, all you need to do is to define scribe and
+zipkin tracer beans. Camel will automatically discover and use them.
 
 [source,xml]
 

camel git commit: Minor improvements to camel-zipkin docs

2016-10-12 Thread acosentino
Repository: camel
Updated Branches:
  refs/heads/master 67e4c809d -> ab3e17b73


Minor improvements to camel-zipkin docs


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

Branch: refs/heads/master
Commit: ab3e17b7369aa312317eb9dc34f013040d531e54
Parents: 67e4c80
Author: James Netherton 
Authored: Wed Oct 12 09:22:15 2016 +0100
Committer: Andrea Cosentino 
Committed: Wed Oct 12 11:45:00 2016 +0200

--
 .../camel-zipkin/src/main/docs/zipkin.adoc  | 72 ++--
 1 file changed, 35 insertions(+), 37 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/ab3e17b7/components/camel-zipkin/src/main/docs/zipkin.adoc
--
diff --git a/components/camel-zipkin/src/main/docs/zipkin.adoc 
b/components/camel-zipkin/src/main/docs/zipkin.adoc
index 369517b..b8eaaab 100644
--- a/components/camel-zipkin/src/main/docs/zipkin.adoc
+++ b/components/camel-zipkin/src/main/docs/zipkin.adoc
@@ -10,7 +10,7 @@ outgoing Camel messages using http://zipkin.io/[zipkin].
 Events (span) are captured for incoming and outgoing messages being sent
 to/from Camel.
 
-This means you need to configure which which Camel endpoints that maps
+This means you need to configure which Camel endpoints map
 to zipkin service names.
 
 The mapping can be configured using:
@@ -18,20 +18,20 @@ The mapping can be configured using:
 * route id - A Camel route id
 * endpoint url - A Camel endpoint url
 
-For both kinds you can use wildcards and regular expressions to match,
-which is using the rules from link:intercept.html[Intercept].
+For both kinds you can match using wildcards and regular expressions,
+using the rules from link:intercept.html[Intercept].
 
 To match all Camel messages you can use * in the pattern and configure
 that to the same service name.
 
-If no mapping has been configured then Camel will fallback and use
+If no mapping has been configured, Camel will fallback and use
 endpoint uri's as service names.  +
-However its recommended to configure service mappings so you can use
-human logic names instead of Camel endpoint uris in the names.
+However, it's recommended to configure service mappings so you can use
+human-readable names instead of Camel endpoint uris in the names.
 
-Camel will auto-configure a ScribeSpanCollector if no SpanCollector
-explicit has been configured, and if the hostname and port to the span
-collector has been configured as environment variables:
+Camel will auto-configure a ScribeSpanCollector if no spanCollector has been
+explicitly configured, or if the following SpanCollector hostname and port 
environment variables
+have been configured:
 
 * ZIPKIN_COLLECTOR_THRIFT_SERVICE_HOST - The hostname
 * ZIPKIN_COLLECTOR_THRIFT_SERVICE_PORT - The port number
@@ -69,7 +69,7 @@ value is the service name. The pattern uses the rules from 
link:intercept.html[I
 messages that matches the pattern. The content is a Set where the key 
is a pattern. The pattern
 uses the rules from link:intercept.html[Intercept].
 
-|includeMessageBody |false |Whether to include the Camel message body in the 
zipkin traces. 
+|includeMessageBody |false |Whether to include the Camel message body in the 
zipkin traces.
 This is not recommended for production usage, or when having big
 payloads. You can limit the size by configuring the
 link:how-do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html[max
@@ -92,18 +92,17 @@ To enable camel-zipkin you need to configure first
 [source,java]
 
--
 ZipkinTracer zipkin = new ZipkinTracer();
-// configure the scribe span collector with the hostname and port for the 
Zipkin Collector Server 
+// configure the scribe span collector with the hostname and port for the 
Zipkin Collector Server
 zipkin.setSpanCollector(new ScribeSpanCollector("192.168.90.100", 9410);
 // and then add zipkin to the CamelContext
 zipkin.init(camelContext);
 
--
 
-The configuration about will the trace all incoming and outgoing
+The configuration above will trace all incoming and outgoing
 messages in Camel routes. 
 
-To use ZipinTracer in XML all you need to do is to setup scribe an the
-zipkin tracer as  and then they are automatic discovered and used
-by Camel.
+To use ZipkinTracer in XML, all you need to do is to define scribe and
+zipkin tracer beans. Camel will automatically discover and use them.
 
 [source,xml]
 

camel git commit: CAMEL-10379: Improved component description

2016-10-12 Thread lburgazzoli
Repository: camel
Updated Branches:
  refs/heads/camel-2.18.x b15c2f5d6 -> 8965cad85


CAMEL-10379: Improved component description


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

Branch: refs/heads/camel-2.18.x
Commit: 8965cad85337014340b2eb9a44db386d40669c30
Parents: b15c2f5
Author: lburgazzoli 
Authored: Tue Oct 11 17:42:34 2016 +0200
Committer: lburgazzoli 
Committed: Wed Oct 12 11:24:57 2016 +0200

--
 .../LumberjackComponentConfiguration.java   |  3 +-
 .../springboot/SqlComponentConfiguration.java   |  3 +-
 .../TelegramComponentConfiguration.java |  2 +-
 .../component/asterisk/AsteriskEndpoint.java|  2 +-
 .../engine/ChronicleEngineEndpoint.java |  3 ++
 .../apache/camel/component/cm/CMEndpoint.java   |  3 ++
 .../camel/component/consul/ConsulEndpoint.java  |  3 ++
 .../component/ehcache/EhcacheEndpoint.java  |  3 ++
 .../component/etcd/AbstractEtcdEndpoint.java|  2 +-
 .../component/influxdb/InfluxDbEndpoint.java|  3 ++
 .../apache/camel/component/irc/IrcEndpoint.java |  5 ++-
 .../camel/component/ironmq/IronMQEndpoint.java  |  2 +-
 .../camel/component/jcache/JCacheEndpoint.java  |  2 +-
 .../lumberjack/LumberjackEndpoint.java  |  6 ++--
 .../camel/component/mllp/MllpEndpoint.java  |  3 +-
 .../camel/component/gridfs/GridFsEndpoint.java  |  6 ++--
 .../camel/component/nats/NatsEndpoint.java  |  3 ++
 .../component/rabbitmq/RabbitMQEndpoint.java|  3 ++
 .../servicenow/ServiceNowEndpoint.java  |  2 +-
 .../apache/camel/component/sql/SqlEndpoint.java |  2 +-
 .../component/telegram/TelegramEndpoint.java|  2 +-
 components/readme.adoc  | 36 ++--
 22 files changed, 63 insertions(+), 36 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/8965cad8/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
--
diff --git 
a/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
 
b/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
index 242d612..e563fe9 100644
--- 
a/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
+++ 
b/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
@@ -21,7 +21,8 @@ import 
org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
 
 /**
- * Camel Lumberjack log streaming component
+ * The lumberjack retrieves logs sent over the network using the Lumberjack
+ * protocol.
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/8965cad8/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
--
diff --git 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
index 42e0745..19a7196 100644
--- 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
+++ 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
@@ -20,7 +20,8 @@ import javax.sql.DataSource;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
- * The sql component can be used to perform SQL query to a database.
+ * The sql component allows you to work with databases using JDBC Stored
+ * Procedure queries.
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/8965cad8/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
--
diff --git 

camel git commit: CAMEL-10379: Improved component description

2016-10-12 Thread lburgazzoli
Repository: camel
Updated Branches:
  refs/heads/master c18e435a2 -> 67e4c809d


CAMEL-10379: Improved component description


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

Branch: refs/heads/master
Commit: 67e4c809dc61843abef89e358f86ed958116569f
Parents: c18e435
Author: lburgazzoli 
Authored: Tue Oct 11 17:42:34 2016 +0200
Committer: lburgazzoli 
Committed: Wed Oct 12 10:51:06 2016 +0200

--
 .../LumberjackComponentConfiguration.java   |  3 +-
 .../springboot/SqlComponentConfiguration.java   |  3 +-
 .../TelegramComponentConfiguration.java |  2 +-
 .../component/asterisk/AsteriskEndpoint.java|  2 +-
 .../engine/ChronicleEngineEndpoint.java |  3 ++
 .../apache/camel/component/cm/CMEndpoint.java   |  3 ++
 .../camel/component/consul/ConsulEndpoint.java  |  3 ++
 .../component/ehcache/EhcacheEndpoint.java  |  3 ++
 .../component/etcd/AbstractEtcdEndpoint.java|  2 +-
 .../component/influxdb/InfluxDbEndpoint.java|  3 ++
 .../apache/camel/component/irc/IrcEndpoint.java |  5 ++-
 .../camel/component/ironmq/IronMQEndpoint.java  |  2 +-
 .../camel/component/jcache/JCacheEndpoint.java  |  2 +-
 .../lumberjack/LumberjackEndpoint.java  |  6 ++--
 .../camel/component/mllp/MllpEndpoint.java  |  3 +-
 .../camel/component/gridfs/GridFsEndpoint.java  |  6 ++--
 .../camel/component/nats/NatsEndpoint.java  |  3 ++
 .../component/rabbitmq/RabbitMQEndpoint.java|  3 ++
 .../servicenow/ServiceNowEndpoint.java  |  2 +-
 .../apache/camel/component/sql/SqlEndpoint.java |  2 +-
 .../component/telegram/TelegramEndpoint.java|  2 +-
 components/readme.adoc  | 36 ++--
 22 files changed, 63 insertions(+), 36 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/67e4c809/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
--
diff --git 
a/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
 
b/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
index 242d612..e563fe9 100644
--- 
a/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
+++ 
b/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
@@ -21,7 +21,8 @@ import 
org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
 
 /**
- * Camel Lumberjack log streaming component
+ * The lumberjack retrieves logs sent over the network using the Lumberjack
+ * protocol.
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/67e4c809/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
--
diff --git 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
index 42e0745..19a7196 100644
--- 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
+++ 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
@@ -20,7 +20,8 @@ import javax.sql.DataSource;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
- * The sql component can be used to perform SQL query to a database.
+ * The sql component allows you to work with databases using JDBC Stored
+ * Procedure queries.
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/67e4c809/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
--
diff --git 

[2/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-bam/pom.xml
--
diff --git a/examples/camel-example-bam/pom.xml 
b/examples/camel-example-bam/pom.xml
index 63a09af..aa1ddcc 100644
--- a/examples/camel-example-bam/pom.xml
+++ b/examples/camel-example-bam/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-bam

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-box-osgi/pom.xml
--
diff --git a/examples/camel-example-box-osgi/pom.xml 
b/examples/camel-example-box-osgi/pom.xml
index 86488a5..7d95c6b 100644
--- a/examples/camel-example-box-osgi/pom.xml
+++ b/examples/camel-example-box-osgi/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-box-osgi

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cafe/pom.xml
--
diff --git a/examples/camel-example-cafe/pom.xml 
b/examples/camel-example-cafe/pom.xml
index 76c7213..b4e529f 100755
--- a/examples/camel-example-cafe/pom.xml
+++ b/examples/camel-example-cafe/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cafe

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-cassandraql/pom.xml
--
diff --git a/examples/camel-example-cdi-cassandraql/pom.xml 
b/examples/camel-example-cdi-cassandraql/pom.xml
index 91ace75..c37226c 100755
--- a/examples/camel-example-cdi-cassandraql/pom.xml
+++ b/examples/camel-example-cdi-cassandraql/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-cassandraql

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-kubernetes/pom.xml
--
diff --git a/examples/camel-example-cdi-kubernetes/pom.xml 
b/examples/camel-example-cdi-kubernetes/pom.xml
index 61970f9..66748e7 100755
--- a/examples/camel-example-cdi-kubernetes/pom.xml
+++ b/examples/camel-example-cdi-kubernetes/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-kubernetes

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-metrics/pom.xml
--
diff --git a/examples/camel-example-cdi-metrics/pom.xml 
b/examples/camel-example-cdi-metrics/pom.xml
index aac6a40..52b1da8 100755
--- a/examples/camel-example-cdi-metrics/pom.xml
+++ b/examples/camel-example-cdi-metrics/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-metrics

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-osgi/pom.xml
--
diff --git a/examples/camel-example-cdi-osgi/pom.xml 
b/examples/camel-example-cdi-osgi/pom.xml
index ff7b986..b841f32 100755
--- a/examples/camel-example-cdi-osgi/pom.xml
+++ b/examples/camel-example-cdi-osgi/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-osgi

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-properties/pom.xml
--
diff --git a/examples/camel-example-cdi-properties/pom.xml 
b/examples/camel-example-cdi-properties/pom.xml
index 1817aac..97d7311 100755
--- a/examples/camel-example-cdi-properties/pom.xml
+++ b/examples/camel-example-cdi-properties/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-properties

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-rest-servlet/pom.xml
--
diff --git a/examples/camel-example-cdi-rest-servlet/pom.xml 
b/examples/camel-example-cdi-rest-servlet/pom.xml
index 0dab9af..b8cf5ee 100755
--- a/examples/camel-example-cdi-rest-servlet/pom.xml
+++ b/examples/camel-example-cdi-rest-servlet/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.camel
 examples
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-example-cdi-rest-servlet

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/examples/camel-example-cdi-test/pom.xml
--
diff --git 

[4/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-boot-starter/pom.xml
--
diff --git a/components-starter/camel-spring-boot-starter/pom.xml 
b/components-starter/camel-spring-boot-starter/pom.xml
index a16aa05..f1136ed 100644
--- a/components-starter/camel-spring-boot-starter/pom.xml
+++ b/components-starter/camel-spring-boot-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-boot-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-dm-starter/pom.xml
--
diff --git a/components-starter/camel-spring-dm-starter/pom.xml 
b/components-starter/camel-spring-dm-starter/pom.xml
index 30762c9..cb467ac 100644
--- a/components-starter/camel-spring-dm-starter/pom.xml
+++ b/components-starter/camel-spring-dm-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-dm-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-integration-starter/pom.xml
--
diff --git a/components-starter/camel-spring-integration-starter/pom.xml 
b/components-starter/camel-spring-integration-starter/pom.xml
index e74265b..d35ddb9 100644
--- a/components-starter/camel-spring-integration-starter/pom.xml
+++ b/components-starter/camel-spring-integration-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-integration-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-javaconfig-starter/pom.xml
--
diff --git a/components-starter/camel-spring-javaconfig-starter/pom.xml 
b/components-starter/camel-spring-javaconfig-starter/pom.xml
index e6ae51f..59dcf9b 100644
--- a/components-starter/camel-spring-javaconfig-starter/pom.xml
+++ b/components-starter/camel-spring-javaconfig-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-javaconfig-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-ldap-starter/pom.xml
--
diff --git a/components-starter/camel-spring-ldap-starter/pom.xml 
b/components-starter/camel-spring-ldap-starter/pom.xml
index e42495e..38ec2da 100644
--- a/components-starter/camel-spring-ldap-starter/pom.xml
+++ b/components-starter/camel-spring-ldap-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-ldap-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-redis-starter/pom.xml
--
diff --git a/components-starter/camel-spring-redis-starter/pom.xml 
b/components-starter/camel-spring-redis-starter/pom.xml
index 8bf9ed2..7d1f140 100644
--- a/components-starter/camel-spring-redis-starter/pom.xml
+++ b/components-starter/camel-spring-redis-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-redis-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-security-starter/pom.xml
--
diff --git a/components-starter/camel-spring-security-starter/pom.xml 
b/components-starter/camel-spring-security-starter/pom.xml
index b1d986f..98238c5 100644
--- a/components-starter/camel-spring-security-starter/pom.xml
+++ b/components-starter/camel-spring-security-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-security-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-spring-starter/pom.xml
--
diff --git a/components-starter/camel-spring-starter/pom.xml 
b/components-starter/camel-spring-starter/pom.xml
index 43feb23..8b30dfe 100644
--- a/components-starter/camel-spring-starter/pom.xml
+++ b/components-starter/camel-spring-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-spring-starter
   jar


[1/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
Repository: camel
Updated Branches:
  refs/heads/master 2538a760f -> c18e435a2


http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/maven/camel-package-maven-plugin/pom.xml
--
diff --git a/tooling/maven/camel-package-maven-plugin/pom.xml 
b/tooling/maven/camel-package-maven-plugin/pom.xml
index bf9b0dd..0eaa61d 100644
--- a/tooling/maven/camel-package-maven-plugin/pom.xml
+++ b/tooling/maven/camel-package-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.camel
 maven-plugins
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-package-maven-plugin

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/maven/guice-maven-plugin/pom.xml
--
diff --git a/tooling/maven/guice-maven-plugin/pom.xml 
b/tooling/maven/guice-maven-plugin/pom.xml
index 9d631b6..0ca3289 100644
--- a/tooling/maven/guice-maven-plugin/pom.xml
+++ b/tooling/maven/guice-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.camel
 maven-plugins
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   guice-maven-plugin

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/maven/pom.xml
--
diff --git a/tooling/maven/pom.xml b/tooling/maven/pom.xml
index 9911c2a..c49523a 100644
--- a/tooling/maven/pom.xml
+++ b/tooling/maven/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.camel
 tooling
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   maven-plugins

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/parent/pom.xml
--
diff --git a/tooling/parent/pom.xml b/tooling/parent/pom.xml
index 03ba475..35abe35 100644
--- a/tooling/parent/pom.xml
+++ b/tooling/parent/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.camel
 tooling
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   tooling-parent

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/pom.xml
--
diff --git a/tooling/pom.xml b/tooling/pom.xml
index 83ef338..b205a45 100644
--- a/tooling/pom.xml
+++ b/tooling/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.camel
 camel-parent
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 ../parent
   
 

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/tooling/spi-annotations/pom.xml
--
diff --git a/tooling/spi-annotations/pom.xml b/tooling/spi-annotations/pom.xml
index c355494..25bb6a0 100644
--- a/tooling/spi-annotations/pom.xml
+++ b/tooling/spi-annotations/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.camel
 tooling
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   



[3/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jetty-common/pom.xml
--
diff --git a/components/camel-jetty-common/pom.xml 
b/components/camel-jetty-common/pom.xml
index 828b51e..a17f1dc 100644
--- a/components/camel-jetty-common/pom.xml
+++ b/components/camel-jetty-common/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jetty-common

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jetty/pom.xml
--
diff --git a/components/camel-jetty/pom.xml b/components/camel-jetty/pom.xml
index ebc9f55..89cecb7 100644
--- a/components/camel-jetty/pom.xml
+++ b/components/camel-jetty/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jetty

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jetty9/pom.xml
--
diff --git a/components/camel-jetty9/pom.xml b/components/camel-jetty9/pom.xml
index f03a46d..7ccba3e 100644
--- a/components/camel-jetty9/pom.xml
+++ b/components/camel-jetty9/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-jetty9

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jgroups/pom.xml
--
diff --git a/components/camel-jgroups/pom.xml b/components/camel-jgroups/pom.xml
index b9d750d..34a5868 100644
--- a/components/camel-jgroups/pom.xml
+++ b/components/camel-jgroups/pom.xml
@@ -22,7 +22,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jgroups

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jibx/pom.xml
--
diff --git a/components/camel-jibx/pom.xml b/components/camel-jibx/pom.xml
index 15b18a0..f527eb1 100644
--- a/components/camel-jibx/pom.xml
+++ b/components/camel-jibx/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jibx

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jing/pom.xml
--
diff --git a/components/camel-jing/pom.xml b/components/camel-jing/pom.xml
index f602cc5..9749d4b 100644
--- a/components/camel-jing/pom.xml
+++ b/components/camel-jing/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jing

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jira/pom.xml
--
diff --git a/components/camel-jira/pom.xml b/components/camel-jira/pom.xml
index 2ef25e5..b056fe7 100644
--- a/components/camel-jira/pom.xml
+++ b/components/camel-jira/pom.xml
@@ -16,7 +16,7 @@
   
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
 
   camel-jira

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jms/pom.xml
--
diff --git a/components/camel-jms/pom.xml b/components/camel-jms/pom.xml
index 3684688..ab1dfce 100644
--- a/components/camel-jms/pom.xml
+++ b/components/camel-jms/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jms

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jmx/pom.xml
--
diff --git a/components/camel-jmx/pom.xml b/components/camel-jmx/pom.xml
index 59033a0..0e22ee2 100644
--- a/components/camel-jmx/pom.xml
+++ b/components/camel-jmx/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-jmx

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-johnzon/pom.xml
--
diff --git a/components/camel-johnzon/pom.xml b/components/camel-johnzon/pom.xml
index 92d7bed..5db22fe 100644
--- a/components/camel-johnzon/pom.xml
+++ b/components/camel-johnzon/pom.xml
@@ -21,7 +21,7 @@
 
 org.apache.camel
 components
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
 
 
 camel-johnzon

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components/camel-jolt/pom.xml

[6/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
Update to next SNAPSHOT version


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

Branch: refs/heads/master
Commit: c18e435a20dcc5f565663a9acebbf2492e2e41c0
Parents: 2538a76
Author: Claus Ibsen 
Authored: Wed Oct 12 10:26:16 2016 +0200
Committer: Claus Ibsen 
Committed: Wed Oct 12 10:26:16 2016 +0200

--
 apache-camel/pom.xml | 2 +-
 buildingtools/pom.xml| 2 +-
 camel-core/pom.xml   | 2 +-
 camel-website/pom.xml| 2 +-
 components-starter/camel-ahc-starter/pom.xml | 2 +-
 components-starter/camel-ahc-ws-starter/pom.xml  | 2 +-
 components-starter/camel-amqp-starter/pom.xml| 2 +-
 components-starter/camel-apns-starter/pom.xml| 2 +-
 components-starter/camel-asterisk-starter/pom.xml| 2 +-
 components-starter/camel-atmos-starter/pom.xml   | 2 +-
 components-starter/camel-atmosphere-websocket-starter/pom.xml| 2 +-
 components-starter/camel-atom-starter/pom.xml| 2 +-
 components-starter/camel-avro-starter/pom.xml| 2 +-
 components-starter/camel-aws-starter/pom.xml | 2 +-
 components-starter/camel-bam-starter/pom.xml | 2 +-
 components-starter/camel-barcode-starter/pom.xml | 2 +-
 components-starter/camel-base64-starter/pom.xml  | 2 +-
 components-starter/camel-bean-validator-starter/pom.xml  | 2 +-
 components-starter/camel-beanio-starter/pom.xml  | 2 +-
 components-starter/camel-beanstalk-starter/pom.xml   | 2 +-
 components-starter/camel-bindy-starter/pom.xml   | 2 +-
 components-starter/camel-boon-starter/pom.xml| 2 +-
 components-starter/camel-box-starter/pom.xml | 2 +-
 components-starter/camel-braintree-starter/pom.xml   | 2 +-
 components-starter/camel-cache-starter/pom.xml   | 2 +-
 components-starter/camel-cassandraql-starter/pom.xml | 2 +-
 components-starter/camel-castor-starter/pom.xml  | 2 +-
 components-starter/camel-chronicle-starter/pom.xml   | 2 +-
 components-starter/camel-chunk-starter/pom.xml   | 2 +-
 components-starter/camel-cm-sms-starter/pom.xml  | 2 +-
 components-starter/camel-cmis-starter/pom.xml| 2 +-
 components-starter/camel-coap-starter/pom.xml| 2 +-
 components-starter/camel-cometd-starter/pom.xml  | 2 +-
 components-starter/camel-consul-starter/pom.xml  | 2 +-
 components-starter/camel-context-starter/pom.xml | 2 +-
 components-starter/camel-core-starter/pom.xml| 2 +-
 components-starter/camel-core-xml-starter/pom.xml| 2 +-
 components-starter/camel-couchdb-starter/pom.xml | 2 +-
 components-starter/camel-crypto-starter/pom.xml  | 2 +-
 components-starter/camel-csv-starter/pom.xml | 2 +-
 components-starter/camel-cxf-starter/pom.xml | 2 +-
 components-starter/camel-cxf-transport-starter/pom.xml   | 2 +-
 components-starter/camel-disruptor-starter/pom.xml   | 2 +-
 components-starter/camel-dns-starter/pom.xml | 2 +-
 components-starter/camel-docker-starter/pom.xml  | 2 +-
 components-starter/camel-dozer-starter/pom.xml   | 2 +-
 components-starter/camel-dropbox-starter/pom.xml | 2 +-
 components-starter/camel-eclipse-starter/pom.xml | 2 +-
 components-starter/camel-ehcache-starter/pom.xml | 2 +-
 components-starter/camel-elasticsearch-starter/pom.xml   | 2 +-
 components-starter/camel-elsql-starter/pom.xml   | 2 +-
 components-starter/camel-etcd-starter/pom.xml| 2 +-
 components-starter/camel-exec-starter/pom.xml| 2 +-
 components-starter/camel-facebook-starter/pom.xml| 2 +-
 components-starter/camel-flatpack-starter/pom.xml| 2 +-
 components-starter/camel-flink-starter/pom.xml   | 2 +-
 components-starter/camel-fop-starter/pom.xml | 2 +-
 components-starter/camel-freemarker-starter/pom.xml  | 2 +-
 components-starter/camel-ftp-starter/pom.xml | 2 +-
 components-starter/camel-ganglia-starter/pom.xml  

[5/6] camel git commit: Update to next SNAPSHOT version

2016-10-12 Thread davsclaus
http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-github-starter/pom.xml
--
diff --git a/components-starter/camel-github-starter/pom.xml 
b/components-starter/camel-github-starter/pom.xml
index 8c80884..1e9e535 100644
--- a/components-starter/camel-github-starter/pom.xml
+++ b/components-starter/camel-github-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-github-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-google-calendar-starter/pom.xml
--
diff --git a/components-starter/camel-google-calendar-starter/pom.xml 
b/components-starter/camel-google-calendar-starter/pom.xml
index 6f291a6..3d1036c 100644
--- a/components-starter/camel-google-calendar-starter/pom.xml
+++ b/components-starter/camel-google-calendar-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-google-calendar-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-google-drive-starter/pom.xml
--
diff --git a/components-starter/camel-google-drive-starter/pom.xml 
b/components-starter/camel-google-drive-starter/pom.xml
index 54eace9..4c5cd31 100644
--- a/components-starter/camel-google-drive-starter/pom.xml
+++ b/components-starter/camel-google-drive-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-google-drive-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-google-mail-starter/pom.xml
--
diff --git a/components-starter/camel-google-mail-starter/pom.xml 
b/components-starter/camel-google-mail-starter/pom.xml
index e0d0bb0..ed8981f 100644
--- a/components-starter/camel-google-mail-starter/pom.xml
+++ b/components-starter/camel-google-mail-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-google-mail-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-gora-starter/pom.xml
--
diff --git a/components-starter/camel-gora-starter/pom.xml 
b/components-starter/camel-gora-starter/pom.xml
index 096f904..92d2983 100644
--- a/components-starter/camel-gora-starter/pom.xml
+++ b/components-starter/camel-gora-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-gora-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-grape-starter/pom.xml
--
diff --git a/components-starter/camel-grape-starter/pom.xml 
b/components-starter/camel-grape-starter/pom.xml
index ebad963..f7502f7 100644
--- a/components-starter/camel-grape-starter/pom.xml
+++ b/components-starter/camel-grape-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-grape-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-groovy-starter/pom.xml
--
diff --git a/components-starter/camel-groovy-starter/pom.xml 
b/components-starter/camel-groovy-starter/pom.xml
index cf35b98..bc6f505 100644
--- a/components-starter/camel-groovy-starter/pom.xml
+++ b/components-starter/camel-groovy-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-groovy-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-gson-starter/pom.xml
--
diff --git a/components-starter/camel-gson-starter/pom.xml 
b/components-starter/camel-gson-starter/pom.xml
index c2d59b4..8b97159 100644
--- a/components-starter/camel-gson-starter/pom.xml
+++ b/components-starter/camel-gson-starter/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.camel
 components-starter
-2.18.0-SNAPSHOT
+2.19.0-SNAPSHOT
   
   camel-gson-starter
   jar

http://git-wip-us.apache.org/repos/asf/camel/blob/c18e435a/components-starter/camel-guava-eventbus-starter/pom.xml
--
diff --git a/components-starter/camel-guava-eventbus-starter/pom.xml 
b/components-starter/camel-guava-eventbus-starter/pom.xml

camel git commit: Upgrade Hibernate-validator to version 5.3.0.Final

2016-10-12 Thread acosentino
Repository: camel
Updated Branches:
  refs/heads/master 471e25a31 -> 2538a760f


Upgrade Hibernate-validator to version 5.3.0.Final


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

Branch: refs/heads/master
Commit: 2538a760fd4265a5acc3d3bb16635ac9c06238a2
Parents: 471e25a
Author: Andrea Cosentino 
Authored: Wed Oct 12 08:43:22 2016 +0200
Committer: Andrea Cosentino 
Committed: Wed Oct 12 08:43:22 2016 +0200

--
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/2538a760/parent/pom.xml
--
diff --git a/parent/pom.xml b/parent/pom.xml
index 215671b..67a3cbd 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -245,7 +245,7 @@
 3.7.2
 1.2.1
 4.0.38
-5.2.4.Final
+5.3.0.Final
 
 4.2.20.Final
 2.3.0