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

apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 6bb2707dc3c CAMEL621093 - align commons-io for fhir component
6bb2707dc3c is described below

commit 6bb2707dc3c6a7eba84f97c23b9c7f38d8a44b50
Author: AurĂ©lien Pupier <[email protected]>
AuthorDate: Mon Aug 19 09:13:35 2024 +0200

    CAMEL621093 - align commons-io for fhir component
    
    fhir transitive dependency rely on 2.11.0. Some components like
    camel-csv can use API which appeared in newer versions of commons-io
    (for instance Uncheck in 2.12.0).
    
    Signed-off-by: AurĂ©lien Pupier <[email protected]>
---
 components/camel-fhir/camel-fhir-api/pom.xml       | 9 +++++++++
 components/camel-fhir/camel-fhir-component/pom.xml | 9 +++++++++
 2 files changed, 18 insertions(+)

diff --git a/components/camel-fhir/camel-fhir-api/pom.xml 
b/components/camel-fhir/camel-fhir-api/pom.xml
index 9f08302e281..dfe85877dd5 100644
--- a/components/camel-fhir/camel-fhir-api/pom.xml
+++ b/components/camel-fhir/camel-fhir-api/pom.xml
@@ -76,4 +76,13 @@
             </plugin>
         </plugins>
     </build>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>commons-io</groupId>
+                <artifactId>commons-io</artifactId>
+                <version>${commons-io-version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 </project>
diff --git a/components/camel-fhir/camel-fhir-component/pom.xml 
b/components/camel-fhir/camel-fhir-component/pom.xml
index 90ac7b977c5..0f38b067dbf 100644
--- a/components/camel-fhir/camel-fhir-component/pom.xml
+++ b/components/camel-fhir/camel-fhir-component/pom.xml
@@ -345,4 +345,13 @@
             </plugins>
         </pluginManagement>
     </build>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>commons-io</groupId>
+                <artifactId>commons-io</artifactId>
+                <version>${commons-io-version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 </project>

Reply via email to