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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new a8e2e48  Regen
a8e2e48 is described below

commit a8e2e4881fe25b0eb0e52b2c6266df99909f123e
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed Sep 9 07:19:59 2020 +0200

    Regen
---
 components-starter/camel-corda-starter/pom.xml |  8 ++++++++
 components-starter/camel-iota-starter/pom.xml  | 12 ++++++++++++
 docs/modules/ROOT/pages/core-starter.adoc      |  2 +-
 3 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/components-starter/camel-corda-starter/pom.xml 
b/components-starter/camel-corda-starter/pom.xml
index 274f6da..43b013d 100644
--- a/components-starter/camel-corda-starter/pom.xml
+++ b/components-starter/camel-corda-starter/pom.xml
@@ -41,6 +41,14 @@
       <!--START OF GENERATED CODE-->
       <exclusions>
         <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-core</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>org.apache.logging.log4j</groupId>
           <artifactId>log4j-core</artifactId>
         </exclusion>
diff --git a/components-starter/camel-iota-starter/pom.xml 
b/components-starter/camel-iota-starter/pom.xml
index 2050aee..ce65d0f 100644
--- a/components-starter/camel-iota-starter/pom.xml
+++ b/components-starter/camel-iota-starter/pom.xml
@@ -38,6 +38,18 @@
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-iota</artifactId>
       <version>${camel-version}</version>
+      <!--START OF GENERATED CODE-->
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-core</artifactId>
+        </exclusion>
+      </exclusions>
+      <!--END OF GENERATED CODE-->
     </dependency>
     <!--START OF GENERATED CODE-->
     <dependency>
diff --git a/docs/modules/ROOT/pages/core-starter.adoc 
b/docs/modules/ROOT/pages/core-starter.adoc
index f94c317..69dc358 100644
--- a/docs/modules/ROOT/pages/core-starter.adoc
+++ b/docs/modules/ROOT/pages/core-starter.adoc
@@ -141,7 +141,7 @@ The component supports 145 options, which are listed below.
 | *camel.resilience4j.slow-call-rate-threshold* | Configures a threshold in 
percentage. The CircuitBreaker considers a call as slow when the call duration 
is greater than slowCallDurationThreshold(Duration. When the percentage of slow 
calls is equal or greater the threshold, the CircuitBreaker transitions to open 
and starts short-circuiting calls. The threshold must be greater than 0 and not 
greater than 100. Default value is 100 percentage which means that all recorded 
calls must be slo [...]
 | *camel.resilience4j.wait-duration-in-open-state* | Configures the wait 
duration (in seconds) which specifies how long the CircuitBreaker should stay 
open, before it switches to half open. Default value is 60 seconds. | 60 | 
Integer
 | *camel.resilience4j.writable-stack-trace-enabled* | Enables writable stack 
traces. When set to false, Exception.getStackTrace returns a zero length array. 
This may be used to reduce log spam when the circuit breaker is open as the 
cause of the exceptions is already known (the circuit breaker is 
short-circuiting calls). | true | Boolean
-| *camel.rest.api-component* | The name of the Camel component to use as the 
REST API (such as swagger) | swagger | String
+| *camel.rest.api-component* | The name of the Camel component to use as the 
REST API (such as swagger) If no API Component has been explicit configured, 
then Camel will lookup if there is a Camel component responsible for servicing 
and generating the REST API documentation, or if a 
org.apache.camel.spi.RestApiProcessorFactory is registered in the registry. If 
either one is found, then that is being used. |  | String
 | *camel.rest.api-context-id-pattern* | Sets an CamelContext id pattern to 
only allow Rest APIs from rest services within CamelContext's which name 
matches the pattern. The pattern #name# refers to the CamelContext name, to 
match on the current CamelContext only. For any other value, the pattern uses 
the rules from PatternHelper#matchPattern(String,String) |  | String
 | *camel.rest.api-context-listing* | Sets whether listing of all available 
CamelContext's with REST services in the JVM is enabled. If enabled it allows 
to discover these contexts, if false then only the current CamelContext is in 
use. | false | Boolean
 | *camel.rest.api-context-path* | Sets a leading API context-path the REST API 
services will be using. This can be used when using components such as 
camel-servlet where the deployed web application is deployed using a 
context-path. |  | String

Reply via email to