You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2019/01/02 09:18:32 UTC

[camel-website] branch asf-site updated: Website updated to b9ee2ae

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 10cb2b9  Website updated to b9ee2ae
10cb2b9 is described below

commit 10cb2b9775dbb95ba5954e8ea6cb3a271c757655
Author: jenkins <bu...@apache.org>
AuthorDate: Wed Jan 2 09:18:30 2019 +0000

    Website updated to b9ee2ae
---
 components/latest/consul-component.html     |   2 +-
 components/latest/kubernetes.html           |   2 +-
 components/latest/metrics-component.html    |  14 +-
 components/latest/micrometer-component.html |  10 +-
 components/latest/nats-component.html       |   2 +-
 sitemap-camel-k.xml                         |  42 +-
 sitemap-components.xml                      | 692 ++++++++++++++--------------
 sitemap-manual.xml                          | 204 ++++----
 8 files changed, 484 insertions(+), 484 deletions(-)

diff --git a/components/latest/consul-component.html b/components/latest/consul-component.html
index b987f6d..2c11254 100644
--- a/components/latest/consul-component.html
+++ b/components/latest/consul-component.html
@@ -2,4 +2,4 @@
         &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
         &lt;artifactId&gt;camel-consul&lt;/artifactId&gt;
         &lt;version&gt;${camel-version}&lt;/version&gt;
-    &lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_uri_format"><a class="anchor" href="#_uri_format"></a>URI format</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">    consul://domain?[options]</code></pre></div></div><div class="paragraph"><p>You can append query options to the URI in the following format:</p></div><div class="listingblock"><div class="content"><pre>    ?opti [...]
\ No newline at end of file
+    &lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_uri_format"><a class="anchor" href="#_uri_format"></a>URI format</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">    consul://domain?[options]</code></pre></div></div><div class="paragraph"><p>You can append query options to the URI in the following format:</p></div><div class="listingblock"><div class="content"><pre>    ?opti [...]
\ No newline at end of file
diff --git a/components/latest/kubernetes.html b/components/latest/kubernetes.html
index b5b29a8..b6dd067 100644
--- a/components/latest/kubernetes.html
+++ b/components/latest/kubernetes.html
@@ -3,6 +3,6 @@
     &lt;artifactId&gt;camel-kubernetes&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;
     &lt;!-- use the same version as your Camel core version --&gt;
-&lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_headers"><a class="anchor" href="#_headers"></a>Headers</h3><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 10%;"><col style="width: 10%;"><col style="width: 80%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class="tableblock halign-left valign-top">Type</th><th class="tableblock halign-left valign-top">Description</th></tr></thead><tbody><tr><td  [...]
+&lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_headers"><a class="anchor" href="#_headers"></a>Headers</h3><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 33.3333%;"><col style="width: 33.3333%;"><col style="width: 33.3334%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class="tableblock halign-left valign-top">Type</th><th class="tableblock halign-left valign-top">Description</th></tr></thead> [...]
     .toF("kubernetes-pods://%s?oauthToken=%s&amp;operation=createPod", host, authToken);</code></pre></div></div><div class="paragraph"><p>By using the KubernetesConstants.KUBERNETES_POD_SPEC header you can specify your PodSpec and pass it to this operation.</p></div></div><div class="sect3"><h4 id="_delete_a_pod"><a class="anchor" href="#_delete_a_pod"></a>Delete a pod</h4><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs"  [...]
     .toF("kubernetes-pods://%s?oauthToken=%s&amp;operation=deletePod", host, authToken);</code></pre></div></div><div class="paragraph"><p>By using the KubernetesConstants.KUBERNETES_POD_NAME header you can specify your Pod name and pass it to this operation.</p></div></div></div></div></div></article></main></div><footer class="footer"><p>This page was built using the Antora default UI.</p><p>The source code for this UI is licensed under the terms of the MPL-2.0 license.</p></footer><sc [...]
\ No newline at end of file
diff --git a/components/latest/metrics-component.html b/components/latest/metrics-component.html
index bd2e084..2bdb1a7 100644
--- a/components/latest/metrics-component.html
+++ b/components/latest/metrics-component.html
@@ -42,7 +42,7 @@ public static class MyConfig extends SingleRouteCamelConfiguration {
 }</code></pre></div></div></div><div class="sect2"><h3 id="_usage"><a class="anchor" href="#_usage"></a>Usage</h3><div class="paragraph"><p>Each metric has type and name. Supported types are<a href="#MetricsComponent-counter">counter</a>,<a href="#MetricsComponent-histogram">histogram</a>, <a href="#MetricsComponent-meter">meter</a>,<a href="#MetricsComponent-timer">timer</a>and<a href="#MetricsComponent-gauge">gauge</a>. Metric name is simple string. If metric type is not provided then  [...]
     .setHeader(MetricsConstants.HEADER_METRIC_NAME, constant("new.name"))
     .to("metrics:counter:name.not.used")
-    .to("direct:out");</code></pre></div></div><div class="paragraph"><p>will update counter with name<code>new.name</code>instead of<code>name.not.used</code>.</p></div><div class="paragraph"><p>All Metrics specific headers are removed from the message once Metrics endpoint finishes processing of exchange. While processing exchange Metrics endpoint will catch all exceptions and write log entry using level<code>warn</code>.</p></div></div></div><div class="sect2"><h3 id="_metrics_type_co [...]
+    .to("direct:out");</code></pre></div></div><div class="paragraph"><p>will update counter with name<code>new.name</code>instead of<code>name.not.used</code>.</p></div><div class="paragraph"><p>All Metrics specific headers are removed from the message once Metrics endpoint finishes processing of exchange. While processing exchange Metrics endpoint will catch all exceptions and write log entry using level<code>warn</code>.</p></div></div></div><div class="sect2"><h3 id="_metrics_type_co [...]
 from("direct:in")
     .to("metric:counter:simple.counter?increment=7")
     .to("direct:out");</code></pre></div></div><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">// increment counter simple.counter by 1
@@ -59,7 +59,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MetricsConstants.HEADER_COUNTER_INCREMENT, simple("${body.length}"))
     .to("metrics:counter:body.length")
-    .to("mock:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_histogram"><a class="anchor" href="#_metric_type_histogram"></a><a id="MetricsComponent-histogram"></a>Metric type histogram</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:histogram:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_3"><a class="anchor" href="#_options_3"></a>Options</h4><table class="tablebloc [...]
+    .to("mock:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_histogram"><a class="anchor" href="#_metric_type_histogram"></a><a id="MetricsComponent-histogram"></a>Metric type histogram</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:histogram:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_3"><a class="anchor" href="#_options_3"></a>Options</h4><table class="tablebloc [...]
 from("direct:in")
     .to("metric:histogram:simple.histogram?value=9923")
     .to("direct:out");</code></pre></div></div><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">// nothing is added to simple.histogram; warning is logged
@@ -69,7 +69,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MetricsConstants.HEADER_HISTOGRAM_VALUE, constant(992L))
     .to("metrics:histogram:simple.histogram?value=700")
-    .to("direct:out")</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_meter"><a class="anchor" href="#_metric_type_meter"></a><a id="MetricsComponent-meter"></a>Metric type meter</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:meter:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_4"><a class="anchor" href="#_options_4"></a>Options</h4><table class="tableblock frame-all grid-al [...]
+    .to("direct:out")</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_meter"><a class="anchor" href="#_metric_type_meter"></a><a id="MetricsComponent-meter"></a>Metric type meter</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:meter:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_4"><a class="anchor" href="#_options_4"></a>Options</h4><table class="tableblock frame-all grid-al [...]
 from("direct:in")
     .to("metric:simple.meter")
     .to("direct:out");</code></pre></div></div><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">// marks simple.meter with value 81
@@ -79,7 +79,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MetricsConstants.HEADER_METER_MARK, constant(345L))
     .to("metrics:meter:simple.meter?mark=123")
-    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metrics_type_timer"><a class="anchor" href="#_metrics_type_timer"></a><a id="MetricsComponent-timer"></a>Metrics type timer</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:timer:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_5"><a class="anchor" href="#_options_5"></a>Options</h4><table class="tableblock frame-all gri [...]
+    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metrics_type_timer"><a class="anchor" href="#_metrics_type_timer"></a><a id="MetricsComponent-timer"></a>Metrics type timer</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:timer:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_5"><a class="anchor" href="#_options_5"></a>Options</h4><table class="tableblock frame-all gri [...]
 from("direct:in")
     .to("metrics:timer:simple.timer?action=start")
     .to("direct:calculate")
@@ -87,7 +87,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MetricsConstants.HEADER_TIMER_ACTION, TimerAction.start)
     .to("metrics:timer:simple.timer")
-    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_gauge"><a class="anchor" href="#_metric_type_gauge"></a><a id="MetricsComponent-gauge"></a>Metric type gauge</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:gauge:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_6"><a class="anchor" href="#_options_6"></a>Options</h4><table class="tableblock frame-all grid-a [...]
+    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metric_type_gauge"><a class="anchor" href="#_metric_type_gauge"></a><a id="MetricsComponent-gauge"></a>Metric type gauge</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>metrics:gauge:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_6"><a class="anchor" href="#_options_6"></a>Options</h4><table class="tableblock frame-all grid-a [...]
 from("direct:in")
     .to("metrics:gauge:simple.gauge?subject=#mySubjectBean")
     .to("direct:out");</code></pre></div></div></div><div class="sect3"><h4 id="_headers_6"><a class="anchor" href="#_headers_6"></a>Headers</h4><div class="paragraph"><p>Message headers can be used to override<code>subject</code>values specified in Metrics component URI. Note: if<code>CamelMetricsName</code>header is specified, then new gauge is registered in addition to default one specified in a URI.</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="w [...]
@@ -95,10 +95,10 @@ from("direct:in")
     .setHeader(MetricsConstants.HEADER_GAUGE_SUBJECT, constant("myUpdatedSubject"))
     .to("metrics:counter:simple.gauge?subject=#mySubjectBean")
     .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_metricsroutepolicyfactory"><a class="anchor" href="#_metricsroutepolicyfactory"></a>MetricsRoutePolicyFactory</h3><div class="paragraph"><p>This factory allows to add a RoutePolicy for each route which exposes route utilization statistics using Dropwizard metrics. This factory can be used in Java and XML as the examples below demonstrates.</p></div><div class="admonitionblock note"><table><tr><td class [...]
-  &lt;bean id="metricsRoutePolicyFactory" class="org.apache.camel.component.metrics.routepolicy.MetricsRoutePolicyFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The <code>MetricsRoutePolicyFactory</code>and <code>MetricsRoutePolicy</code>supports the following options:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 10%;"><col style="width: 10%;"><col style="width: 80%;"></colgroup><thead><tr><th class="tableblock halign-left va [...]
+  &lt;bean id="metricsRoutePolicyFactory" class="org.apache.camel.component.metrics.routepolicy.MetricsRoutePolicyFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The <code>MetricsRoutePolicyFactory</code>and <code>MetricsRoutePolicy</code>supports the following options:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 33.3333%;"><col style="width: 33.3333%;"><col style="width: 33.3334%;"></colgroup><thead><tr><th class="tableblock [...]
 if (registryService != null) {
   MetricsRegistry registry = registryService.getMetricsRegistry();
   ...
 }</code></pre></div></div></div><div class="sect2"><h3 id="_metricsmessagehistoryfactory"><a class="anchor" href="#_metricsmessagehistoryfactory"></a>MetricsMessageHistoryFactory</h3><div class="paragraph"><p><strong>Available as of Camel 2.17</strong></p></div><div class="paragraph"><p>This factory allows to use metrics to capture Message History performance statistics while routing messages. It works by using a metrics Timer for each node in all the routes. This factory can be used in  [...]
-  &lt;bean id="metricsMessageHistoryFactory" class="org.apache.camel.component.metrics.messagehistory.MetricsMessageHistoryFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The following options is supported on the factory:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 10%;"><col style="width: 10%;"><col style="width: 80%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class="tableblock halign-l [...]
+  &lt;bean id="metricsMessageHistoryFactory" class="org.apache.camel.component.metrics.messagehistory.MetricsMessageHistoryFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The following options is supported on the factory:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 33.3333%;"><col style="width: 33.3333%;"><col style="width: 33.3334%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class="tabl [...]
 String json = service.dumpStatisticsAsJson();</code></pre></div></div><div class="paragraph"><p>And the JMX API the MBean is registered in the <code>type=services</code>tree with <code>name=MetricsMessageHistoryService</code>.</p></div></div><div class="sect2"><h3 id="_instrumentedthreadpoolfactory"><a class="anchor" href="#_instrumentedthreadpoolfactory"></a>InstrumentedThreadPoolFactory</h3><div class="paragraph"><p><strong>Available as of Camel 2.18</strong></p></div><div class="parag [...]
\ No newline at end of file
diff --git a/components/latest/micrometer-component.html b/components/latest/micrometer-component.html
index f14fee8..764636e 100644
--- a/components/latest/micrometer-component.html
+++ b/components/latest/micrometer-component.html
@@ -46,7 +46,7 @@ public static class MyConfig extends SingleRouteCamelConfiguration {
     .setHeader(MicrometerConstants.HEADER_METRIC_NAME, constant("new.name"))
     .setHeader(MicrometerConstants.HEADER_METRIC_TAGS, constant(Tags.of("dynamic-key", "dynamic-value")))
     .to("metrics:counter:name.not.used?tags=key=value")
-    .to("direct:out");</code></pre></div></div><div class="paragraph"><p>will update a counter with name<code>new.name</code>instead of<code>name.not.used</code>using the tag<code>dynamic-key</code>with value<code>dynamic-value</code>in addition to the tag<code>key</code>with value<code>value</code>.</p></div><div class="paragraph"><p>All Metrics specific headers are removed from the message once the Micrometer endpoint finishes processing of exchange. While processing exchange Micromete [...]
+    .to("direct:out");</code></pre></div></div><div class="paragraph"><p>will update a counter with name<code>new.name</code>instead of<code>name.not.used</code>using the tag<code>dynamic-key</code>with value<code>dynamic-value</code>in addition to the tag<code>key</code>with value<code>value</code>.</p></div><div class="paragraph"><p>All Metrics specific headers are removed from the message once the Micrometer endpoint finishes processing of exchange. While processing exchange Micromete [...]
 from("direct:in")
     .to("micrometer:counter:simple.counter?increment=7")
     .to("direct:out");</code></pre></div></div><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">// increment counter simple.counter by 1
@@ -63,7 +63,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MicrometerConstants.HEADER_COUNTER_INCREMENT, simple("${body.length}"))
     .to("micrometer:counter:body.length")
-    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_distribution_summary"><a class="anchor" href="#_distribution_summary"></a><a id="MicrometerComponent-summary"></a>Distribution Summary</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>micrometer:summary:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_3"><a class="anchor" href="#_options_3"></a>Options</h4><table class="tableblo [...]
+    .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_distribution_summary"><a class="anchor" href="#_distribution_summary"></a><a id="MicrometerComponent-summary"></a>Distribution Summary</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>micrometer:summary:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_3"><a class="anchor" href="#_options_3"></a>Options</h4><table class="tableblo [...]
 from("direct:in")
     .to("micrometer:summary:simple.histogram?value=9923")
     .to("direct:out");</code></pre></div></div><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">// nothing is added to simple.histogram; warning is logged
@@ -75,7 +75,7 @@ from("direct:in")
 from("direct:in")
     .setHeader(MicrometerConstants.HEADER_HISTOGRAM_VALUE, constant(992.0D))
     .to("micrometer:summary:simple.histogram?value=700")
-    .to("direct:out")</code></pre></div></div></div></div><div class="sect2"><h3 id="_timer"><a class="anchor" href="#_timer"></a><a id="MicrometerComponent-timer"></a>Timer</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>micrometer:timer:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_4"><a class="anchor" href="#_options_4"></a>Options</h4><table class="tableblock frame-all grid-all stretch"><colgroup><col styl [...]
+    .to("direct:out")</code></pre></div></div></div></div><div class="sect2"><h3 id="_timer"><a class="anchor" href="#_timer"></a><a id="MicrometerComponent-timer"></a>Timer</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code>micrometer:timer:metricname[?options]</code></pre></div></div><div class="sect3"><h4 id="_options_4"><a class="anchor" href="#_options_4"></a>Options</h4><table class="tableblock frame-all grid-all stretch"><colgroup><col styl [...]
 from("direct:in")
     .to("micrometer:timer:simple.timer?action=start")
     .to("direct:calculate")
@@ -84,8 +84,8 @@ from("direct:in")
     .setHeader(MicrometerConstants.HEADER_TIMER_ACTION, MicrometerTimerAction.start)
     .to("micrometer:timer:simple.timer")
     .to("direct:out");</code></pre></div></div></div></div><div class="sect2"><h3 id="_micrometerroutepolicyfactory"><a class="anchor" href="#_micrometerroutepolicyfactory"></a>MicrometerRoutePolicyFactory</h3><div class="paragraph"><p>This factory allows to add a RoutePolicy for each route in order to exposes route utilization statistics using Micrometer. This factory can be used in Java and XML as the examples below demonstrates.</p></div><div class="admonitionblock note"><table><tr><t [...]
-  &lt;bean id="metricsRoutePolicyFactory" class="org.apache.camel.component.micrometer.routepolicy.MicrometerRoutePolicyFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The <code>MicrometerRoutePolicyFactory</code>and <code>MicrometerRoutePolicy</code>supports the following options:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 10%;"><col style="width: 10%;"><col style="width: 80%;"></colgroup><thead><tr><th class="tableblock ha [...]
-  &lt;bean id="metricsMessageHistoryFactory" class="org.apache.camel.component.micrometer.messagehistory.MicrometerMessageHistoryFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The following options is supported on the factory:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 10%;"><col style="width: 10%;"><col style="width: 80%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class="tableblock ha [...]
+  &lt;bean id="metricsRoutePolicyFactory" class="org.apache.camel.component.micrometer.routepolicy.MicrometerRoutePolicyFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The <code>MicrometerRoutePolicyFactory</code>and <code>MicrometerRoutePolicy</code>supports the following options:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 33.3333%;"><col style="width: 33.3333%;"><col style="width: 33.3334%;"></colgroup><thead><tr><th class [...]
+  &lt;bean id="metricsMessageHistoryFactory" class="org.apache.camel.component.micrometer.messagehistory.MicrometerMessageHistoryFactory"/&gt;</code></pre></div></div><div class="paragraph"><p>The following options is supported on the factory:</p></div><table class="tableblock frame-all grid-all stretch"><colgroup><col style="width: 33.3333%;"><col style="width: 33.3333%;"><col style="width: 33.3334%;"></colgroup><thead><tr><th class="tableblock halign-left valign-top">Name</th><th class [...]
 String json = service.dumpStatisticsAsJson();</code></pre></div></div><div class="paragraph"><p>If JMX is enabled in the CamelContext, the MBean is registered in the <code>type=services</code>tree with <code>name=MicrometerMessageHistory</code>.</p></div></div><div class="sect2"><h3 id="_micrometereventnotifiers"><a class="anchor" href="#_micrometereventnotifiers"></a>MicrometerEventNotifiers</h3><div class="paragraph"><p>There is a<code>MicrometerRouteEventNotifier</code>(counting added [...]
 String json = service.dumpStatisticsAsJson();</code></pre></div></div><div class="paragraph"><p>If JMX is enabled in the CamelContext, the MBean is registered in the <code>type=services</code>tree with <code>name=MicrometerEventNotifier</code>.</p></div></div><div class="sect2"><h3 id="_instrumentedthreadpoolfactory"><a class="anchor" href="#_instrumentedthreadpoolfactory"></a>InstrumentedThreadPoolFactory</h3><div class="paragraph"><p>This factory allows you to gather performance inform [...]
       &lt;groupId&gt;io.micrometer&lt;/groupId&gt;
diff --git a/components/latest/nats-component.html b/components/latest/nats-component.html
index 0c63d65..1815eb2 100644
--- a/components/latest/nats-component.html
+++ b/components/latest/nats-component.html
@@ -3,4 +3,4 @@
     &lt;artifactId&gt;camel-nats&lt;/artifactId&gt;
     &lt;!-- use the same version as your Camel core version --&gt;
     &lt;version&gt;x.y.z&lt;/version&gt;
-&lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_uri_format"><a class="anchor" href="#_uri_format"></a>URI format</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">nats:servers[?options]</code></pre></div></div><div class="paragraph"><p>Where <strong>servers</strong> represents the list of NATS servers.</p></div></div><div class="sect2"><h3 id="_options"><a class="anchor" href="#_ [...]
\ No newline at end of file
+&lt;/dependency&gt;</code></pre></div></div><div class="sect2"><h3 id="_uri_format"><a class="anchor" href="#_uri_format"></a>URI format</h3><div class="listingblock"><div class="content"><pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">nats:servers[?options]</code></pre></div></div><div class="paragraph"><p>Where <strong>servers</strong> represents the list of NATS servers.</p></div></div><div class="sect2"><h3 id="_options"><a class="anchor" href="#_ [...]
\ No newline at end of file
diff --git a/sitemap-camel-k.xml b/sitemap-camel-k.xml
index 5ff5130..6a3e03c 100644
--- a/sitemap-camel-k.xml
+++ b/sitemap-camel-k.xml
@@ -2,86 +2,86 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/components.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/configmap-secret.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/configuration.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/dependencies.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/logging.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/index.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/gke.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/installation.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/minikube.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/minishift.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/openshift.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/groovy.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/java.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/javascript.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/kotlin.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/languages.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/xml.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/running/dev-mode.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/running/running.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/uninstalling.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 </urlset>
\ No newline at end of file
diff --git a/sitemap-components.xml b/sitemap-components.xml
index ee55b82..c63dddf 100644
--- a/sitemap-components.xml
+++ b/sitemap-components.xml
@@ -2,1386 +2,1386 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/components/latest/ahc-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ahc-ws-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/amqp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/apns-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/asn1-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/asterisk-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atmos-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atmosphere-websocket-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atom-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-map-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-messaging-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-multimap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-queue-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-set-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/atomix-value-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/avro-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/avro-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-cw-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-ddb-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-ddbstream-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-ec2-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-eks-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-iam-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-kinesis-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-kinesis-firehose-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-kms-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-lambda-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-mq-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-s3-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-sdb-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-ses-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-sns-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-sqs-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-swf-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws-xray.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/aws.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/azure-blob-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/azure-queue-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/azure.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/barcode-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/base64-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/bean-validator-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/beanio-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/beanstalk-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/bindy-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/blueprint.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/bonita-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/boon-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/braintree-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/caffeine-cache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/caffeine-loadcache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cdi.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/chronicle-engine-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/chunk-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cm-sms-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cmis-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/coap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cometd-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/consul-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/corda-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/couchbase-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/couchdb-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cql-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/crypto-cms-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/crypto-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/crypto-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/csv-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cxf-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cxf-transport.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/cxfrs-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/digitalocean-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/disruptor-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/dns-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/docker-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/dozer-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/drill-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/dropbox-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ehcache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ejb-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/elasticsearch-rest-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/elsql-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/etcd-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/eventadmin-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/exec-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/facebook-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/flatpack-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/flatpack-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/flink-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/fop-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/freemarker-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ftp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ftps-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ganglia-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/geocoder-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/git-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/github-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-bigquery-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-bigquery-sql-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-calendar-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-calendar-stream-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-drive-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-mail-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-mail-stream-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-pubsub-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-sheets-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/google-sheets-stream-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/gora-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/grape-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/groovy-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/grpc-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/guava-eventbus-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-atomicvalue-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-instance-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-list-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-map-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-multimap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-queue-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-replicatedmap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-ringbuffer-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-seda-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-set-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast-topic-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hazelcast.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hbase-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hdfs2-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/headersmap.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hipchat-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hl7-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/http4-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/hystrix.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ical-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/iec60870-client-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/iec60870-server-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-cache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-compute-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-events-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-idgen-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-messaging-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-queue-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite-set-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ignite.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/index.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/infinispan-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/influxdb-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/iota-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ipfs-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/irc-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ironmq-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jacksonxml-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jasypt.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/javaScript-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jaxb-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jbpm-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jcache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jclouds-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jcr-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jdbc-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jetty-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jgroups-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jgroups-raft-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jibx-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jing-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jms-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jmx-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jolt-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jpa-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-fastjson-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-gson-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-jackson-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-johnzon-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-validator-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/json-xstream-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jsonpath-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/jt400-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kafka-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-config-maps-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-deployments-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-hpa-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-job-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-namespaces-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-nodes-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-persistent-volumes-claims-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-persistent-volumes-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-pods-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-replication-controllers-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-resources-quota-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-secrets-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-service-accounts-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes-services-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kubernetes.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/kura.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ldap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ldif-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/leveldb.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/lpr-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/lra.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/lucene-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/lumberjack-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/lzf-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mail-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/master-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/metrics-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/micrometer-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/milo-client-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/milo-server-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mime-multipart-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mina2-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mllp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mongodb-gridfs-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mongodb3-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mqtt-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/msv-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mustache-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mvel-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mvel-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mybatis-bean-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/mybatis-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/nagios-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/nats-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/netty4-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/netty4-http-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/nsq-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ognl-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openshift-build-configs-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openshift-builds-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-cinder-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-glance-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-keystone-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-neutron-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-nova-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack-swift-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/openstack.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/opentracing.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/optaplanner-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/paho-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/paxlogging-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/pdf-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/pgevent-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/pgp-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/php-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/protobuf-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/pubnub-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/python-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/quartz2-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/quickfix-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rabbitmq-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/reactive-streams-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/reactor-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rest-swagger-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/restlet-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ribbon.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rmi-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rss-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rss-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ruby-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/rxjava2.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sap-netweaver-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/schematron-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/scp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/script.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/secureXML-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/service-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/servlet-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sftp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/shiro.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sip-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sjms-batch-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sjms-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sjms2-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/slack-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/smpp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/snmp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/soapjaxb-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/solr-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spark-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spark-rest-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spel-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/splunk-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-batch-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-boot.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-cloud-consul.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-cloud-netflix.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-cloud-zookeeper.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-cloud.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-event-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-integration-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-javaconfig.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-ldap-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-redis-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-security.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring-ws-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/spring.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sql-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/sql-stored-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/ssh-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/stax-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/stomp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/stream-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/string-template-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/swagger-java.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/syslog-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/tarfile-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/telegram-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/terser-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/test-blueprint.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/test-cdi.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/test-karaf.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/test-spring.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/test.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/testcontainers-spring.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/testcontainers.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/thrift-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/thrift-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/tidyMarkup-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/tika-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twilio-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twitter-directmessage-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twitter-search-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twitter-streaming-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twitter-timeline-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/twitter.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/undertow-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/univocity-csv-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/univocity-fixed-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/univocity-tsv-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/velocity-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/vertx-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/weather-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/web3j-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/websocket-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/websocket-jsr356-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/wordpress-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xchange-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xmlsecurity-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xmpp-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xquery-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xquery-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/xstream-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/yaml-snakeyaml-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/yammer-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/yql-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/zendesk-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/zipfile-dataformat.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/zipkin.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/zookeeper-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/components/latest/zookeeper-master-component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 </urlset>
\ No newline at end of file
diff --git a/sitemap-manual.xml b/sitemap-manual.xml
index 0f8b04b..299a69f 100644
--- a/sitemap-manual.xml
+++ b/sitemap-manual.xml
@@ -2,410 +2,410 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/manual/latest/annotation-based-expression-language.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/architecture.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/async.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/asynchronous-routing-engine.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/backlog-tracer.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/backlogdebugger.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/bam-example.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/bam.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/batch-consumer.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/bean-integration.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/binding.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/book-getting-started.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/books.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/browsable-endpoint.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/building.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/camel-boot.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/camel-configuration-utilities.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/camel-core.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/camel-jar-dependencies.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/camelcontext.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/cep.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/commercial-camel-offerings.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/component.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/componentconfiguration.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/configuring-camel.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/configuring-route-startup-ordering-and-autostartup.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/data-format.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/debugger.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/defaulterrorhandler.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/delay-interceptor.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/dependency-injection.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/download-archives.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/download.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/dozer-type-conversion.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/dsl.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/endpoint-completer.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/endpoint.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/enterprise-integration-patterns.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/error-handler.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/error-handling-in-camel.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/examples.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/exception-clause.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/exchange-pattern.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/exchange.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/expression.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/faq.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/fluent-builders.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/getting-started.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/graceful-shutdown.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/groovy-dsl.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/guice-jms-example.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/guice-maven-plugin.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/guice.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/http-session-handling.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/http-session.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/index.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/injector.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/intercept.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/inversion-of-control-with-smart-defaults.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/irc-room.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/java-dsl.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/jndi.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/json.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/karaf.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/languages.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/lifecycle.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/mailing-lists.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/oncompletion.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/predicate.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/processor.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/producertemplate.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/registry.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/route-builder.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/route-policy.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/routes.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/scala-dsl-eip.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/scala-dsl-getting-started.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/scala-dsl-supported-languages.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/scala-dsl.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/scripting-languages.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/security-advisories.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/security.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/servicepool.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/spring-testing.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/spring-xml-extensions.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/spring.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/support.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/team.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/testing.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/threading-model.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/transactionerrorhandler.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/transport.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/try-catch-finally.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/type-converter.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/uris.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/user-stories.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/using-osgi-blueprint-with-camel.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/using-propertyplaceholder.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/uuidgenerator.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/writing-components.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/xml-configuration.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/manual/latest/xml-reference.html</loc>
-<lastmod>2018-12-31T15:12:47.134Z</lastmod>
+<lastmod>2019-01-02T09:18:01.498Z</lastmod>
 </url>
 </urlset>
\ No newline at end of file