You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by fm...@apache.org on 2024/01/25 12:46:32 UTC

(camel-spring-boot) 19/40: Add a netty-bom override (#277)

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

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

commit 7fcf5b2e108d862a683e21bc7a2833b8f4667cf3
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Wed Oct 11 14:35:43 2023 -0400

    Add a netty-bom override (#277)
---
 components-starter/camel-hl7-starter/src/main/docs/hl7.json    | 10 ++++++----
 .../src/main/resources/pom.xml                                 | 10 ++++++++++
 tooling/redhat-camel-spring-boot-bom/pom.xml                   | 10 ++++++++++
 3 files changed, 26 insertions(+), 4 deletions(-)

diff --git a/components-starter/camel-hl7-starter/src/main/docs/hl7.json b/components-starter/camel-hl7-starter/src/main/docs/hl7.json
index 0c26b75a652..d55f4936959 100644
--- a/components-starter/camel-hl7-starter/src/main/docs/hl7.json
+++ b/components-starter/camel-hl7-starter/src/main/docs/hl7.json
@@ -9,7 +9,7 @@
       "name": "camel.dataformat.hl7.customizer",
       "type": "org.apache.camel.spring.boot.DataFormatConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.hl7.springboot.HL7DataFormatConfiguration",
-      "sourceMethod": "public org.apache.camel.spring.boot.DataFormatConfigurationPropertiesCommon.CustomizerProperties getCustomizer() "
+      "sourceMethod": "getCustomizer()"
     },
     {
       "name": "camel.language.hl7terser",
@@ -20,7 +20,7 @@
       "name": "camel.language.hl7terser.customizer",
       "type": "org.apache.camel.spring.boot.LanguageConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.hl7.springboot.Hl7TerserLanguageConfiguration",
-      "sourceMethod": "public org.apache.camel.spring.boot.LanguageConfigurationPropertiesCommon.CustomizerProperties getCustomizer() "
+      "sourceMethod": "getCustomizer()"
     }
   ],
   "properties": [
@@ -39,7 +39,8 @@
       "name": "camel.dataformat.hl7.validate",
       "type": "java.lang.Boolean",
       "description": "Whether to validate the HL7 message Is by default true.",
-      "sourceType": "org.apache.camel.component.hl7.springboot.HL7DataFormatConfiguration"
+      "sourceType": "org.apache.camel.component.hl7.springboot.HL7DataFormatConfiguration",
+      "defaultValue": true
     },
     {
       "name": "camel.language.hl7terser.customizer.enabled",
@@ -68,7 +69,8 @@
       "name": "camel.language.hl7terser.trim",
       "type": "java.lang.Boolean",
       "description": "Whether to trim the value to remove leading and trailing whitespaces and line breaks",
-      "sourceType": "org.apache.camel.component.hl7.springboot.Hl7TerserLanguageConfiguration"
+      "sourceType": "org.apache.camel.component.hl7.springboot.Hl7TerserLanguageConfiguration",
+      "defaultValue": true
     }
   ],
   "hints": []
diff --git a/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml b/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml
index d77f378a930..f69bc18469f 100644
--- a/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml
+++ b/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml
@@ -68,6 +68,16 @@
     <!-- These are place holder dependency management entries -->
     <dependencyManagement>
         <dependencies>
+
+            <!-- Netty bom -->
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-bom</artifactId>
+                <version>${netty-version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
             <!-- Insert third party overrides here -->
             <dependency>
                 <groupId>org.yaml</groupId>
diff --git a/tooling/redhat-camel-spring-boot-bom/pom.xml b/tooling/redhat-camel-spring-boot-bom/pom.xml
index 43e35d63f61..f0b0219bbe9 100644
--- a/tooling/redhat-camel-spring-boot-bom/pom.xml
+++ b/tooling/redhat-camel-spring-boot-bom/pom.xml
@@ -68,6 +68,16 @@
     <!-- These are place holder dependency management entries -->
     <dependencyManagement>
         <dependencies>
+
+            <!-- Netty bom -->
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-bom</artifactId>
+                <version>4.1.96.Final</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
             <!-- Insert third party overrides here -->
             <dependency>
                 <groupId>org.yaml</groupId>