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

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


The following commit(s) were added to refs/heads/main by this push:
     new 11db2099cf3 CAMEL-22379: Add Mina Sftp Component Starter (#1654)
11db2099cf3 is described below

commit 11db2099cf3f8fcb5e794c4789c5e8ac4ef826b1
Author: Luigi De Masi <[email protected]>
AuthorDate: Sat Feb 7 15:32:17 2026 +0100

    CAMEL-22379: Add Mina Sftp Component Starter (#1654)
---
 .../camel/springboot/catalog/components.properties |   1 +
 components-starter/camel-mina-sftp-starter/pom.xml |  56 ++++++
 .../src/main/docs/mina-sftp.json                   |  67 +++++++
 .../MinaSftpComponentAutoConfiguration.java        |  77 ++++++++
 .../springboot/MinaSftpComponentConfiguration.java | 123 +++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        | 203 +++++++++++++++++++++
 .../src/main/resources/META-INF/NOTICE.txt         |  11 ++
 ...rk.boot.autoconfigure.AutoConfiguration.imports |  17 ++
 .../file/remote/mina/springboot/BaseMinaSftp.java  | 129 +++++++++++++
 .../MinaSftpComponentAutoConfigurationTest.java    |  59 ++++++
 .../MinaSftpConfigurationPropertiesTest.java       |  67 +++++++
 .../mina/springboot/MinaSftpEmbeddedService.java   | 202 ++++++++++++++++++++
 .../springboot/MinaSftpEndpointOptionsTest.java    | 112 ++++++++++++
 .../springboot/MinaSftpSimpleProducerTest.java     |  83 +++++++++
 .../src/test/resources/hostkey.pem                 |  15 ++
 .../src/test/resources/log4j2.properties           |  21 +++
 .../src/main/docs/platform-http.json               |  17 +-
 components-starter/pom.xml                         |   1 +
 tooling/camel-spring-boot-bom/pom.xml              |   5 +
 tooling/camel-spring-boot-dependencies/pom.xml     |  10 +
 20 files changed, 1270 insertions(+), 6 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index ef276d1dfb4..026be46f47b 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -254,6 +254,7 @@ milo-client
 milo-server
 milvus
 mina
+mina-sftp
 minio
 mllp
 mock
diff --git a/components-starter/camel-mina-sftp-starter/pom.xml 
b/components-starter/camel-mina-sftp-starter/pom.xml
new file mode 100644
index 00000000000..168f7b95e4c
--- /dev/null
+++ b/components-starter/camel-mina-sftp-starter/pom.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.camel.springboot</groupId>
+    <artifactId>components-starter</artifactId>
+    <version>4.18.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>camel-mina-sftp-starter</artifactId>
+  <packaging>jar</packaging>
+  <name>Camel SB Starters :: mina-sftp</name>
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter</artifactId>
+      <version>${spring-boot-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-mina-sftp</artifactId>
+      <version>${camel-version}</version>
+    </dependency>
+    <!-- for testing sftp -->
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-test-infra-ftp</artifactId>
+      <version>${camel-version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <!--START OF GENERATED CODE-->
+    <dependency>
+      <groupId>org.apache.camel.springboot</groupId>
+      <artifactId>camel-core-starter</artifactId>
+    </dependency>
+    <!--END OF GENERATED CODE-->
+  </dependencies>
+</project>
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/docs/mina-sftp.json 
b/components-starter/camel-mina-sftp-starter/src/main/docs/mina-sftp.json
new file mode 100644
index 00000000000..aba958c706b
--- /dev/null
+++ b/components-starter/camel-mina-sftp-starter/src/main/docs/mina-sftp.json
@@ -0,0 +1,67 @@
+{
+  "groups": [
+    {
+      "name": "camel.component.mina-sftp",
+      "type": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration"
+    },
+    {
+      "name": "camel.component.mina-sftp.customizer",
+      "type": 
"org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "sourceMethod": "getCustomizer()"
+    }
+  ],
+  "properties": [
+    {
+      "name": "camel.component.mina-sftp.autowired-enabled",
+      "type": "java.lang.Boolean",
+      "description": "Whether autowiring is enabled. This is used for 
automatic autowiring options (the option must be marked as autowired) by 
looking up in the registry to find if there is a single instance of matching 
type, which then gets configured on the component. This can be used for 
automatic configuring JDBC data sources, JMS connection factories, AWS Clients, 
etc.",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "defaultValue": true
+    },
+    {
+      "name": "camel.component.mina-sftp.bridge-error-handler",
+      "type": "java.lang.Boolean",
+      "description": "Allows for bridging the consumer to the Camel routing 
Error Handler, which mean any exceptions (if possible) occurred while the Camel 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled by the routing Error Handler. Important: 
This is only possible if the 3rd party component allows Camel to be alerted if 
an exception was thrown. Some components handle this internally only, and 
therefore bridgeErrorHandler is n [...]
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "defaultValue": false
+    },
+    {
+      "name": "camel.component.mina-sftp.customizer.enabled",
+      "type": "java.lang.Boolean",
+      "sourceType": 
"org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
+    },
+    {
+      "name": "camel.component.mina-sftp.enabled",
+      "type": "java.lang.Boolean",
+      "description": "Whether to enable auto configuration of the mina-sftp 
component. This is enabled by default.",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration"
+    },
+    {
+      "name": "camel.component.mina-sftp.health-check-consumer-enabled",
+      "type": "java.lang.Boolean",
+      "description": "Used for enabling or disabling all consumer based health 
checks from this component",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "defaultValue": true
+    },
+    {
+      "name": "camel.component.mina-sftp.health-check-producer-enabled",
+      "type": "java.lang.Boolean",
+      "description": "Used for enabling or disabling all producer based health 
checks from this component. Notice: Camel has by default disabled all producer 
based health-checks. You can turn on producer checks globally by setting 
camel.health.producersEnabled=true.",
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "defaultValue": true
+    },
+    {
+      "name": "camel.component.mina-sftp.lazy-start-producer",
+      "type": "java.lang.Boolean",
+      "description": "Whether the producer should be started lazy (on the 
first message). By starting lazy you can use this to allow CamelContext and 
routes to startup in situations where a producer may otherwise fail during 
starting and cause the route to fail being started. By deferring this startup 
to be lazy then the startup failure can be handled during routing messages via 
Camel's routing error handlers. Beware that when the first message is processed 
then creating and starting the [...]
+      "sourceType": 
"org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentConfiguration",
+      "defaultValue": false
+    }
+  ],
+  "hints": [],
+  "ignored": {
+    "properties": []
+  }
+}
\ No newline at end of file
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfiguration.java
 
b/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfiguration.java
new file mode 100644
index 00000000000..01a977ab5bf
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfiguration.java
@@ -0,0 +1,77 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.Component;
+import org.apache.camel.component.file.remote.mina.MinaSftpComponent;
+import org.apache.camel.spi.ComponentCustomizer;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.apache.camel.spring.boot.ComponentConfigurationProperties;
+import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
+import 
org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
+import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
+import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.autoconfigure.AutoConfigureAfter;
+import 
org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Conditional;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Lazy;
+
+/**
+ * Generated by camel-package-maven-plugin - do not edit this file!
+ */
+@Configuration(proxyBeanMethods = false)
+@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
+@EnableConfigurationProperties({ComponentConfigurationProperties.class,MinaSftpComponentConfiguration.class})
+@ConditionalOnHierarchicalProperties({"camel.component", 
"camel.component.mina-sftp"})
+@AutoConfigureAfter(CamelAutoConfiguration.class)
+public class MinaSftpComponentAutoConfiguration {
+
+    @Autowired
+    private ApplicationContext applicationContext;
+    private final CamelContext camelContext;
+    @Autowired
+    private MinaSftpComponentConfiguration configuration;
+
+    public MinaSftpComponentAutoConfiguration(
+            org.apache.camel.CamelContext camelContext) {
+        this.camelContext = camelContext;
+    }
+
+    @Lazy
+    @Bean
+    public ComponentCustomizer configureMinaSftpComponent() {
+        return new ComponentCustomizer() {
+            @Override
+            public void configure(String name, Component target) {
+                CamelPropertiesHelper.copyProperties(camelContext, 
configuration, target);
+            }
+            @Override
+            public boolean isEnabled(String name, Component target) {
+                return HierarchicalPropertiesEvaluator.evaluate(
+                        applicationContext,
+                        "camel.component.customizer",
+                        "camel.component.mina-sftp.customizer")
+                    && target instanceof MinaSftpComponent;
+            }
+        };
+    }
+}
\ No newline at end of file
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentConfiguration.java
 
b/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentConfiguration.java
new file mode 100644
index 00000000000..c6756a6e206
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentConfiguration.java
@@ -0,0 +1,123 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
+import org.springframework.boot.context.properties.ConfigurationProperties;
+
+/**
+ * Upload and download files to/from SFTP servers using Apache MINA SSHD.
+ * 
+ * Generated by camel-package-maven-plugin - do not edit this file!
+ */
+@ConfigurationProperties(prefix = "camel.component.mina-sftp")
+public class MinaSftpComponentConfiguration
+        extends
+            ComponentConfigurationPropertiesCommon {
+
+    /**
+     * Whether to enable auto configuration of the mina-sftp component. This is
+     * enabled by default.
+     */
+    private Boolean enabled;
+    /**
+     * Allows for bridging the consumer to the Camel routing Error Handler,
+     * which mean any exceptions (if possible) occurred while the Camel 
consumer
+     * is trying to pickup incoming messages, or the likes, will now be
+     * processed as a message and handled by the routing Error Handler.
+     * Important: This is only possible if the 3rd party component allows Camel
+     * to be alerted if an exception was thrown. Some components handle this
+     * internally only, and therefore bridgeErrorHandler is not possible. In
+     * other situations we may improve the Camel component to hook into the 3rd
+     * party component and make this possible for future releases. By default
+     * the consumer will use the org.apache.camel.spi.ExceptionHandler to deal
+     * with exceptions, that will be logged at WARN or ERROR level and ignored.
+     */
+    private Boolean bridgeErrorHandler = false;
+    /**
+     * Whether the producer should be started lazy (on the first message). By
+     * starting lazy you can use this to allow CamelContext and routes to
+     * startup in situations where a producer may otherwise fail during 
starting
+     * and cause the route to fail being started. By deferring this startup to
+     * be lazy then the startup failure can be handled during routing messages
+     * via Camel's routing error handlers. Beware that when the first message 
is
+     * processed then creating and starting the producer may take a little time
+     * and prolong the total processing time of the processing.
+     */
+    private Boolean lazyStartProducer = false;
+    /**
+     * Whether autowiring is enabled. This is used for automatic autowiring
+     * options (the option must be marked as autowired) by looking up in the
+     * registry to find if there is a single instance of matching type, which
+     * then gets configured on the component. This can be used for automatic
+     * configuring JDBC data sources, JMS connection factories, AWS Clients,
+     * etc.
+     */
+    private Boolean autowiredEnabled = true;
+    /**
+     * Used for enabling or disabling all consumer based health checks from 
this
+     * component
+     */
+    private Boolean healthCheckConsumerEnabled = true;
+    /**
+     * Used for enabling or disabling all producer based health checks from 
this
+     * component. Notice: Camel has by default disabled all producer based
+     * health-checks. You can turn on producer checks globally by setting
+     * camel.health.producersEnabled=true.
+     */
+    private Boolean healthCheckProducerEnabled = true;
+
+    public Boolean getBridgeErrorHandler() {
+        return bridgeErrorHandler;
+    }
+
+    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
+        this.bridgeErrorHandler = bridgeErrorHandler;
+    }
+
+    public Boolean getLazyStartProducer() {
+        return lazyStartProducer;
+    }
+
+    public void setLazyStartProducer(Boolean lazyStartProducer) {
+        this.lazyStartProducer = lazyStartProducer;
+    }
+
+    public Boolean getAutowiredEnabled() {
+        return autowiredEnabled;
+    }
+
+    public void setAutowiredEnabled(Boolean autowiredEnabled) {
+        this.autowiredEnabled = autowiredEnabled;
+    }
+
+    public Boolean getHealthCheckConsumerEnabled() {
+        return healthCheckConsumerEnabled;
+    }
+
+    public void setHealthCheckConsumerEnabled(Boolean 
healthCheckConsumerEnabled) {
+        this.healthCheckConsumerEnabled = healthCheckConsumerEnabled;
+    }
+
+    public Boolean getHealthCheckProducerEnabled() {
+        return healthCheckProducerEnabled;
+    }
+
+    public void setHealthCheckProducerEnabled(Boolean 
healthCheckProducerEnabled) {
+        this.healthCheckProducerEnabled = healthCheckProducerEnabled;
+    }
+}
\ No newline at end of file
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/LICENSE.txt
 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/LICENSE.txt
new file mode 100644
index 00000000000..6b0b1270ff0
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/LICENSE.txt
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/NOTICE.txt
 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/NOTICE.txt
new file mode 100644
index 00000000000..2e215bf2e6b
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/NOTICE.txt
@@ -0,0 +1,11 @@
+   =========================================================================
+   ==  NOTICE file corresponding to the section 4 d of                    ==
+   ==  the Apache License, Version 2.0,                                   ==
+   ==  in this case for the Apache Camel distribution.                    ==
+   =========================================================================
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Please read the different LICENSE files present in the licenses directory of
+   this distribution.
diff --git 
a/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
new file mode 100644
index 00000000000..87dbeda6c8d
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
@@ -0,0 +1,17 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+org.apache.camel.component.file.remote.mina.springboot.MinaSftpComponentAutoConfiguration
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/BaseMinaSftp.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/BaseMinaSftp.java
new file mode 100644
index 00000000000..286fa4dbd74
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/BaseMinaSftp.java
@@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.LinkOption;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.Exchange;
+import org.apache.camel.ProducerTemplate;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.model.language.SimpleExpression;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.extension.RegisterExtension;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Configuration;
+
+/**
+ * Base test class for MINA SFTP Spring Boot tests.
+ */
+public abstract class BaseMinaSftp {
+
+    @RegisterExtension
+    static MinaSftpEmbeddedService service = new MinaSftpEmbeddedService();
+
+    @Autowired
+    protected CamelContext context;
+
+    @Autowired
+    protected ProducerTemplate template;
+
+    protected int getPort() {
+        return service.getPort();
+    }
+
+    protected String getRootDir() {
+        return service.getFtpRootDir().toString();
+    }
+
+    protected Path ftpFile(String file) {
+        return service.getFtpRootDir().resolve(file);
+    }
+
+    protected String getMinaSftpUrl(String user, String password) {
+        StringBuilder url = new StringBuilder("mina-sftp://";);
+        url.append(user == null ? "" : user + "@");
+        url.append("localhost:" + service.getPort() + "/");
+        url.append(password == null ? "" : "?password=" + password);
+        url.append("&strictHostKeyChecking=no&useUserKnownHostsFile=false");
+        return url.toString();
+    }
+
+    protected void assertMockEndpointsSatisfied() throws InterruptedException {
+        MockEndpoint.assertIsSatisfied(this.context);
+    }
+
+    protected void sendFile(String url, Object body, String fileName) {
+        template.sendBodyAndHeader(url, body, Exchange.FILE_NAME, new 
SimpleExpression(fileName));
+    }
+
+    protected static void assertFileExists(String filename) {
+        File file = new File(filename);
+        Assertions.assertTrue(file.exists(), "File " + filename + " should 
exist");
+        Assertions.assertTrue(file.isFile(), "File " + filename + " should be 
a file");
+    }
+
+    protected static void assertFileNotExists(Path file) {
+        Assertions.assertFalse(Files.exists(file, new LinkOption[0]), "File " 
+ file + " should not exist");
+    }
+
+    protected static void assertFileExists(Path file, String content) throws 
IOException {
+        Assertions.assertTrue(Files.exists(file, new LinkOption[0]), "File " + 
file + " should exist");
+        Assertions.assertTrue(Files.isRegularFile(file, new LinkOption[0]), 
"File " + file + " should be a file");
+        Assertions.assertEquals(content, new String(Files.readAllBytes(file)),
+                "File " + file + " has unexpected content");
+    }
+
+    protected Path testFile(String dir) {
+        return this.testDirectory().resolve(dir);
+    }
+
+    protected Path testDirectory() {
+        return this.testDirectory(false);
+    }
+
+    protected Path testDirectory(boolean create) {
+        Class<?> testClass = this.getClass();
+        return testDirectory(testClass, create);
+    }
+
+    public static Path testDirectory(Class<?> testClass, boolean create) {
+        Path dir = Paths.get("target", "data", testClass.getSimpleName());
+        if (create) {
+            try {
+                Files.createDirectories(dir);
+            } catch (IOException var4) {
+                throw new IllegalStateException("Unable to create test 
directory: " + dir, var4);
+            }
+        }
+        return dir;
+    }
+
+    protected String fileUri(String query) {
+        Path var10000 = this.testDirectory();
+        return "file:" + var10000 + (query.startsWith("?") ? "" : "/") + query;
+    }
+
+    @Configuration
+    public static class TestConfiguration {
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfigurationTest.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfigurationTest.java
new file mode 100644
index 00000000000..79496ef29a7
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfigurationTest.java
@@ -0,0 +1,59 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import org.apache.camel.component.file.remote.mina.MinaSftpComponent;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledIf;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.annotation.DirtiesContext;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+/**
+ * Test that verifies MinaSftpComponent is properly auto-configured in Spring 
Boot.
+ */
+@DirtiesContext
+@SpringBootTest(classes = { CamelAutoConfiguration.class, 
MinaSftpComponentAutoConfigurationTest.class })
+@EnabledIf("org.apache.camel.component.file.remote.mina.springboot.MinaSftpEmbeddedService#hasRequiredAlgorithms")
+public class MinaSftpComponentAutoConfigurationTest extends BaseMinaSftp {
+
+    @Test
+    public void testMinaSftpComponentIsAutoConfigured() {
+        // Verify the component is registered in the CamelContext
+        MinaSftpComponent component = context.getComponent("mina-sftp", 
MinaSftpComponent.class);
+        assertNotNull(component, "MinaSftpComponent should be 
auto-configured");
+    }
+
+    @Test
+    public void testMinaSftpComponentType() {
+        // Verify the component is of the correct type
+        Object component = context.getComponent("mina-sftp");
+        assertNotNull(component, "mina-sftp component should exist");
+        assertTrue(component instanceof MinaSftpComponent,
+                "Component should be instance of MinaSftpComponent");
+    }
+
+    @Test
+    public void testCamelContextCanResolveMinaSftpComponent() {
+        // Verify the component can be resolved from the context (components 
are lazily registered)
+        Object component = context.getComponent("mina-sftp");
+        assertNotNull(component, "CamelContext should be able to resolve 
mina-sftp component");
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpConfigurationPropertiesTest.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpConfigurationPropertiesTest.java
new file mode 100644
index 00000000000..3e8dafb6897
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpConfigurationPropertiesTest.java
@@ -0,0 +1,67 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import org.apache.camel.component.file.remote.mina.MinaSftpComponent;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledIf;
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.annotation.DirtiesContext;
+import org.springframework.test.context.TestPropertySource;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+/**
+ * Test that verifies Spring Boot configuration properties are properly 
applied to the component.
+ */
+@DirtiesContext
+@EnableAutoConfiguration
+@SpringBootTest(
+        classes = { CamelAutoConfiguration.class, 
MinaSftpComponentAutoConfiguration.class, 
MinaSftpConfigurationPropertiesTest.class },
+        properties = {
+                "camel.component.mina-sftp.lazy-start-producer=true",
+                "camel.component.mina-sftp.bridge-error-handler=true"
+        }
+)
+@EnabledIf("org.apache.camel.component.file.remote.mina.springboot.MinaSftpEmbeddedService#hasRequiredAlgorithms")
+public class MinaSftpConfigurationPropertiesTest extends BaseMinaSftp {
+
+    @Test
+    public void testLazyStartProducerProperty() {
+        MinaSftpComponent component = context.getComponent("mina-sftp", 
MinaSftpComponent.class);
+        assertNotNull(component, "MinaSftpComponent should be configured");
+        assertTrue(component.isLazyStartProducer(), "lazyStartProducer should 
be true from properties");
+    }
+
+    @Test
+    public void testBridgeErrorHandlerProperty() {
+        MinaSftpComponent component = context.getComponent("mina-sftp", 
MinaSftpComponent.class);
+        assertNotNull(component, "MinaSftpComponent should be configured");
+        assertTrue(component.isBridgeErrorHandler(), "bridgeErrorHandler 
should be true from properties");
+    }
+
+    @Test
+    public void testAutowiredEnabledDefault() {
+        MinaSftpComponent component = context.getComponent("mina-sftp", 
MinaSftpComponent.class);
+        assertNotNull(component, "MinaSftpComponent should be configured");
+        // autowiredEnabled defaults to true
+        assertTrue(component.isAutowiredEnabled(), "autowiredEnabled should 
default to true");
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEmbeddedService.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEmbeddedService.java
new file mode 100644
index 00000000000..0a29982e24e
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEmbeddedService.java
@@ -0,0 +1,202 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import java.io.IOException;
+import java.net.InetSocketAddress;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.Collections;
+import java.util.List;
+import java.util.function.BiConsumer;
+
+import org.apache.camel.test.infra.common.services.AbstractTestService;
+import org.apache.camel.test.infra.ftp.common.FtpProperties;
+import org.apache.camel.test.infra.ftp.services.FtpService;
+import org.apache.sshd.common.NamedFactory;
+import org.apache.sshd.common.file.virtualfs.VirtualFileSystemFactory;
+import org.apache.sshd.common.keyprovider.FileKeyPairProvider;
+import org.apache.sshd.common.session.helpers.AbstractSession;
+import org.apache.sshd.common.signature.BuiltinSignatures;
+import org.apache.sshd.common.signature.Signature;
+import org.apache.sshd.scp.server.ScpCommandFactory;
+import org.apache.sshd.server.SshServer;
+import org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator;
+import org.apache.sshd.sftp.server.SftpSubsystemFactory;
+import org.junit.jupiter.api.extension.ExtensionContext;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Embedded SFTP service for Spring Boot tests.
+ */
+public class MinaSftpEmbeddedService extends AbstractTestService implements 
FtpService {
+    private static final Logger LOG = 
LoggerFactory.getLogger(MinaSftpEmbeddedService.class);
+    private static final String KNOWN_HOSTS = "[localhost]:%d ssh-rsa 
AAAAB3NzaC1yc2EAAAADAQABAAAAgQDdfIWeSV4o68dRrKS"
+            + 
"zFd/Bk51E65UTmmSrmW0O1ohtzi6HzsDPjXgCtlTt3FqTcfFfI92IlTr4JWqC9UK1QT1ZTeng0MkPQmv68hDANHbt5CpETZHjW5q4OOgWhV"
+            + "vj5IyOC2NZHtKlJBkdsMAa15ouOOJLzBvAvbqOR/yUROsEiQ==";
+
+    protected SshServer sshd;
+    protected final boolean rootDirMode;
+    protected int port;
+
+    private Path rootDir;
+    private Path knownHosts;
+    private ExtensionContext context;
+
+    public MinaSftpEmbeddedService() {
+        this(false);
+    }
+
+    public MinaSftpEmbeddedService(boolean rootDirMode) {
+        this.rootDirMode = rootDirMode;
+    }
+
+    public void setUp() throws Exception {
+        rootDir = testDirectory().resolve("res/home");
+        knownHosts = testDirectory().resolve("user-home/.ssh/known_hosts");
+        Files.createDirectories(knownHosts.getParent());
+        Files.createDirectories(rootDir);
+        Files.write(knownHosts, buildKnownHosts());
+        setUpServer();
+    }
+
+    private Path testDirectory() {
+        return Paths.get("target", "mina-sftp", 
context.getRequiredTestClass().getSimpleName());
+    }
+
+    public void setUpServer() throws Exception {
+        sshd = SshServer.setUpDefaultServer();
+        sshd.setPort(port);
+        sshd.setKeyPairProvider(new 
FileKeyPairProvider(Paths.get("src/test/resources/hostkey.pem")));
+        sshd.setSubsystemFactories(Collections.singletonList(new 
SftpSubsystemFactory()));
+        sshd.setCommandFactory(new ScpCommandFactory());
+        sshd.setPasswordAuthenticator((username, password, session) -> true);
+        sshd.setPublickeyAuthenticator(getPublickeyAuthenticator());
+
+        if (rootDirMode) {
+            sshd.setFileSystemFactory(new 
VirtualFileSystemFactory(testDirectory().resolve("res").toAbsolutePath()));
+        }
+        List<NamedFactory<Signature>> signatureFactories = 
sshd.getSignatureFactories();
+        signatureFactories.clear();
+        // use only one, quite strong signature algorithms for 3 kinds of keys 
- RSA, EC, EDDSA
+        signatureFactories.add(BuiltinSignatures.rsaSHA512);
+        signatureFactories.add(BuiltinSignatures.nistp521);
+        signatureFactories.add(BuiltinSignatures.ed25519);
+        sshd.setSignatureFactories(signatureFactories);
+        sshd.start();
+
+        port = ((InetSocketAddress) 
sshd.getBoundAddresses().iterator().next()).getPort();
+    }
+
+    protected PublickeyAuthenticator getPublickeyAuthenticator() {
+        return (username, key, session) -> true;
+    }
+
+    public void tearDown() {
+        tearDownServer();
+    }
+
+    public void tearDownServer() {
+        try {
+            if (sshd != null) {
+                sshd.stop(true);
+            }
+        } catch (Exception e) {
+            LOG.trace("Exception while shutting down: {}", e.getMessage(), e);
+        } finally {
+            sshd = null;
+        }
+    }
+
+    public void disconnectAllSessions() throws IOException {
+        List<AbstractSession> sessions = sshd.getActiveSessions();
+        for (AbstractSession session : sessions) {
+            session.disconnect(4, "dummy");
+        }
+    }
+
+    public byte[] buildKnownHosts() {
+        return String.format(KNOWN_HOSTS, port).getBytes();
+    }
+
+    public String getKnownHostsFile() {
+        return knownHosts.toString();
+    }
+
+    public Path getFtpRootDir() {
+        return rootDir;
+    }
+
+    @Override
+    protected void registerProperties(BiConsumer<String, String> store) {
+        store.accept(FtpProperties.SERVER_HOST, "localhost");
+        store.accept(FtpProperties.SERVER_PORT, String.valueOf(port));
+        store.accept(FtpProperties.ROOT_DIR, rootDir.toString());
+    }
+
+    public int getPort() {
+        return port;
+    }
+
+    @Override
+    public int port() {
+        return port;
+    }
+
+    public static boolean hasRequiredAlgorithms() {
+        try {
+            FileKeyPairProvider provider = new 
FileKeyPairProvider(Paths.get("src/test/resources/hostkey.pem"));
+            provider.loadKeys(null);
+            return true;
+        } catch (Exception e) {
+            String name = System.getProperty("os.name");
+            String message = e.getMessage();
+            LOG.warn("SunX509 is not available on this platform [{}] Testing 
is skipped! Real cause: {}", name, message, e);
+            return false;
+        }
+    }
+
+    @Override
+    public void registerProperties() {
+        ExtensionContext.Store store = 
context.getStore(ExtensionContext.Namespace.GLOBAL);
+        registerProperties(store::put);
+    }
+
+    @Override
+    public void beforeAll(ExtensionContext extensionContext) {
+        this.context = extensionContext;
+    }
+
+    @Override
+    public void afterAll(ExtensionContext extensionContext) {
+        this.context = null;
+    }
+
+    @Override
+    public void afterEach(ExtensionContext extensionContext) {
+        shutdown();
+        this.context = null;
+    }
+
+    @Override
+    public void beforeEach(ExtensionContext extensionContext) {
+        this.context = extensionContext;
+        initialize();
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEndpointOptionsTest.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEndpointOptionsTest.java
new file mode 100644
index 00000000000..1783f265559
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEndpointOptionsTest.java
@@ -0,0 +1,112 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import java.io.File;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.component.file.remote.mina.MinaSftpEndpoint;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledIf;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.annotation.DirtiesContext;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+/**
+ * Test that verifies endpoint options work correctly with Spring Boot 
auto-configuration.
+ */
+@DirtiesContext
+@SpringBootTest(classes = { CamelAutoConfiguration.class, 
MinaSftpEndpointOptionsTest.class })
+@EnabledIf("org.apache.camel.component.file.remote.mina.springboot.MinaSftpEmbeddedService#hasRequiredAlgorithms")
+public class MinaSftpEndpointOptionsTest extends BaseMinaSftp {
+
+    @BeforeEach
+    public void setUp() throws Exception {
+        service.getFtpRootDir().toFile().mkdirs();
+    }
+
+    @Test
+    public void testPreferredAuthenticationsOption() {
+        String preferredAuthentications = "password,publickey";
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + 
"?username=admin&password=admin&preferredAuthentications=password,publickey"
+                + "&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Hello World", Exchange.FILE_NAME, 
"hello.txt");
+
+        File file = ftpFile("hello.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+        assertEquals("Hello World", 
context.getTypeConverter().convertTo(String.class, file));
+
+        // Verify the endpoint option was set correctly
+        MinaSftpEndpoint endpoint = context.getEndpoint(uri, 
MinaSftpEndpoint.class);
+        assertEquals(preferredAuthentications, 
endpoint.getConfiguration().getPreferredAuthentications());
+    }
+
+    @Test
+    public void testCiphersOption() {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + "?username=admin&password=admin&ciphers=aes256-ctr"
+                + "&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Test with cipher", 
Exchange.FILE_NAME, "cipher.txt");
+
+        File file = ftpFile("cipher.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+
+        // Verify the endpoint option was set correctly (ciphers is returned 
with brackets as a list)
+        MinaSftpEndpoint endpoint = context.getEndpoint(uri, 
MinaSftpEndpoint.class);
+        
assertTrue(endpoint.getConfiguration().getCiphers().contains("aes256-ctr"),
+                "Ciphers should contain aes256-ctr");
+    }
+
+    @Test
+    public void testConnectTimeoutOption() {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + "?username=admin&password=admin&connectTimeout=30000"
+                + "&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Test with timeout", 
Exchange.FILE_NAME, "timeout.txt");
+
+        File file = ftpFile("timeout.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+
+        // Verify the endpoint option was set correctly
+        MinaSftpEndpoint endpoint = context.getEndpoint(uri, 
MinaSftpEndpoint.class);
+        assertEquals(30000, endpoint.getConfiguration().getConnectTimeout());
+    }
+
+    @Test
+    public void testStepwiseOption() {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + "?username=admin&password=admin&stepwise=false"
+                + "&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Test with stepwise=false", 
Exchange.FILE_NAME, "stepwise.txt");
+
+        File file = ftpFile("stepwise.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+
+        // Verify the endpoint option was set correctly
+        MinaSftpEndpoint endpoint = context.getEndpoint(uri, 
MinaSftpEndpoint.class);
+        assertEquals(false, endpoint.getConfiguration().isStepwise());
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpSimpleProducerTest.java
 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpSimpleProducerTest.java
new file mode 100644
index 00000000000..31eab93beb4
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpSimpleProducerTest.java
@@ -0,0 +1,83 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.file.remote.mina.springboot;
+
+import java.io.File;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.spring.boot.CamelAutoConfiguration;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledIf;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.annotation.DirtiesContext;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+/**
+ * Test that verifies basic SFTP producer operations work with Spring Boot 
auto-configuration.
+ */
+@DirtiesContext
+@SpringBootTest(classes = { CamelAutoConfiguration.class, 
MinaSftpSimpleProducerTest.class })
+@EnabledIf("org.apache.camel.component.file.remote.mina.springboot.MinaSftpEmbeddedService#hasRequiredAlgorithms")
+public class MinaSftpSimpleProducerTest extends BaseMinaSftp {
+
+    @BeforeEach
+    public void setUp() throws Exception {
+        // Ensure the root directory exists
+        service.getFtpRootDir().toFile().mkdirs();
+    }
+
+    @Test
+    public void testSimpleProduceFile() throws Exception {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + 
"?username=admin&password=admin&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Hello World", Exchange.FILE_NAME, 
"hello.txt");
+
+        File file = ftpFile("hello.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+        assertEquals("Hello World", 
context.getTypeConverter().convertTo(String.class, file));
+    }
+
+    @Test
+    public void testProduceFileWithPath() throws Exception {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir() 
+ "/subdir"
+                + 
"?username=admin&password=admin&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "Nested File Content", 
Exchange.FILE_NAME, "nested.txt");
+
+        File file = ftpFile("subdir/nested.txt").toFile();
+        assertTrue(file.exists(), "File should exist: " + file);
+        assertEquals("Nested File Content", 
context.getTypeConverter().convertTo(String.class, file));
+    }
+
+    @Test
+    public void testProduceMultipleFiles() throws Exception {
+        String uri = "mina-sftp://localhost:"; + getPort() + "/" + getRootDir()
+                + 
"?username=admin&password=admin&strictHostKeyChecking=no&useUserKnownHostsFile=false";
+
+        template.sendBodyAndHeader(uri, "File 1", Exchange.FILE_NAME, 
"file1.txt");
+        template.sendBodyAndHeader(uri, "File 2", Exchange.FILE_NAME, 
"file2.txt");
+        template.sendBodyAndHeader(uri, "File 3", Exchange.FILE_NAME, 
"file3.txt");
+
+        assertTrue(ftpFile("file1.txt").toFile().exists(), "file1.txt should 
exist");
+        assertTrue(ftpFile("file2.txt").toFile().exists(), "file2.txt should 
exist");
+        assertTrue(ftpFile("file3.txt").toFile().exists(), "file3.txt should 
exist");
+    }
+}
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/resources/hostkey.pem 
b/components-starter/camel-mina-sftp-starter/src/test/resources/hostkey.pem
new file mode 100644
index 00000000000..9b215f45bb4
--- /dev/null
+++ b/components-starter/camel-mina-sftp-starter/src/test/resources/hostkey.pem
@@ -0,0 +1,15 @@
+-----BEGIN RSA PRIVATE KEY-----
+MIICXAIBAAKBgQDdfIWeSV4o68dRrKSzFd/Bk51E65UTmmSrmW0O1ohtzi6HzsDP
+jXgCtlTt3FqTcfFfI92IlTr4JWqC9UK1QT1ZTeng0MkPQmv68hDANHbt5CpETZHj
+W5q4OOgWhVvj5IyOC2NZHtKlJBkdsMAa15ouOOJLzBvAvbqOR/yUROsEiQIDAQAB
+AoGBANG3JDW6NoP8rF/zXoeLgLCj+tfVUPSczhGFVrQkAk4mWfyRkhN0WlwHFOec
+K89MpkV1ij/XPVzU4MNbQ2yod1KiDylzvweYv+EaEhASCmYNs6LS03punml42SL9
+97tOmWfVJXxlQoLiY6jHPU97vTc65k8gL+gmmrpchsW0aqmZAkEA/c8zfmKvY37T
+cxcLLwzwsqqH7g2KZGTf9aRmx2ebdW+QKviJJhbdluDgl1TNNFj5vCLznFDRHiqJ
+wq0wkZ39cwJBAN9l5v3kdXj21UrurNPdlV0n2GZBt2vblooQC37XHF97r2zM7Ou+
+Lg6MyfJClyguhWL9dxnGbf3btQ0l3KDstxMCQCRaiEqjAfIjWVATzeNIXDWLHXso
+b1kf5cA+cwY+vdKdTy4IeUR+Y/DXdvPWDqpf0C11aCVMohdLCn5a5ikFUycCQDhV
+K/BuAallJNfmY7JxN87r00fF3ojWMJnT/fIYMFFrkQrwifXQWTDWE76BSDibsosJ
+u1TGksnm8zrDh2UVC/0CQFrHTiSl/3DHvWAbOJawGKg46cnlDcAhSyV8Frs8/dlP
+7YGG3eqkw++lsghqmFO6mRUTKsBmiiB2wgLGhL5pyYY=
+-----END RSA PRIVATE KEY-----
\ No newline at end of file
diff --git 
a/components-starter/camel-mina-sftp-starter/src/test/resources/log4j2.properties
 
b/components-starter/camel-mina-sftp-starter/src/test/resources/log4j2.properties
new file mode 100644
index 00000000000..3bee8825d1c
--- /dev/null
+++ 
b/components-starter/camel-mina-sftp-starter/src/test/resources/log4j2.properties
@@ -0,0 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+appender.out.type = Console
+appender.out.name = out
+appender.out.layout.type = PatternLayout
+appender.out.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
+rootLogger.level = INFO
+rootLogger.appenderRef.out.ref = out
diff --git 
a/components-starter/camel-platform-http-starter/src/main/docs/platform-http.json
 
b/components-starter/camel-platform-http-starter/src/main/docs/platform-http.json
index ad5a5002336..b611b25426d 100644
--- 
a/components-starter/camel-platform-http-starter/src/main/docs/platform-http.json
+++ 
b/components-starter/camel-platform-http-starter/src/main/docs/platform-http.json
@@ -9,7 +9,7 @@
       "name": "camel.component.platform-http.customizer",
       "type": 
"org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration",
-      "sourceMethod": "public 
org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon.CustomizerProperties
 getCustomizer() "
+      "sourceMethod": "getCustomizer()"
     },
     {
       "name": "camel.component.platform-http.server.accesslog.undertow",
@@ -22,13 +22,15 @@
       "name": "camel.component.platform-http.autowired-enabled",
       "type": "java.lang.Boolean",
       "description": "Whether autowiring is enabled. This is used for 
automatic autowiring options (the option must be marked as autowired) by 
looking up in the registry to find if there is a single instance of matching 
type, which then gets configured on the component. This can be used for 
automatic configuring JDBC data sources, JMS connection factories, AWS Clients, 
etc.",
-      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration"
+      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration",
+      "defaultValue": true
     },
     {
       "name": "camel.component.platform-http.bridge-error-handler",
       "type": "java.lang.Boolean",
       "description": "Allows for bridging the consumer to the Camel routing 
Error Handler, which mean any exceptions (if possible) occurred while the Camel 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled by the routing Error Handler. Important: 
This is only possible if the 3rd party component allows Camel to be alerted if 
an exception was thrown. Some components handle this internally only, and 
therefore bridgeErrorHandler is n [...]
-      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration"
+      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration",
+      "defaultValue": false
     },
     {
       "name": "camel.component.platform-http.customizer.enabled",
@@ -51,7 +53,8 @@
       "name": "camel.component.platform-http.handle-write-response-error",
       "type": "java.lang.Boolean",
       "description": "When Camel is complete processing the message, and the 
HTTP server is writing response. This option controls whether Camel should 
catch any failure during writing response and store this on the Exchange, which 
allows onCompletion\/UnitOfWork to regard the Exchange as failed and have 
access to the caused exception from the HTTP server.",
-      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration"
+      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration",
+      "defaultValue": false
     },
     {
       "name": "camel.component.platform-http.header-filter-strategy",
@@ -69,13 +72,15 @@
       "name": "camel.component.platform-http.server-request-validation",
       "type": "java.lang.Boolean",
       "description": "Whether HTTP server should do preliminary validation of 
incoming requests, validating if Content-Type\/Accept header, matches what is 
allowed according to consumes\/produces configuration (if set). If validation 
fails HTTP Status 415\/406 is returned. The HTTP server performs this 
validation before Camel is involved, and as such if validation fails then Camel 
is never activated. Setting this option to false, allows Camel to process any 
incoming requests such as to d [...]
-      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration"
+      "sourceType": 
"org.apache.camel.component.platform.http.springboot.PlatformHttpComponentConfiguration",
+      "defaultValue": true
     },
     {
       "name": 
"camel.component.platform-http.server.accesslog.undertow.use-camel-logging",
       "type": "java.lang.Boolean",
       "description": "Use camel logging for undertow http access log.",
-      "sourceType": 
"org.apache.camel.component.platform.http.springboot.customizer.UndertowAccessLogProperties"
+      "sourceType": 
"org.apache.camel.component.platform.http.springboot.customizer.UndertowAccessLogProperties",
+      "defaultValue": false
     }
   ],
   "hints": [],
diff --git a/components-starter/pom.xml b/components-starter/pom.xml
index 47b19563241..d02f2ec9d5c 100644
--- a/components-starter/pom.xml
+++ b/components-starter/pom.xml
@@ -357,6 +357,7 @@
     <module>camel-micrometer-starter</module>
     <module>camel-milo-starter</module>
     <module>camel-milvus-starter</module>
+    <module>camel-mina-sftp-starter</module>
     <module>camel-mina-starter</module>
     <module>camel-minio-starter</module>
     <module>camel-mllp-starter</module>
diff --git a/tooling/camel-spring-boot-bom/pom.xml 
b/tooling/camel-spring-boot-bom/pom.xml
index e4eab27d8a4..f69d8f2017c 100644
--- a/tooling/camel-spring-boot-bom/pom.xml
+++ b/tooling/camel-spring-boot-bom/pom.xml
@@ -1328,6 +1328,11 @@
         <artifactId>camel-milvus-starter</artifactId>
         <version>4.18.0-SNAPSHOT</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel.springboot</groupId>
+        <artifactId>camel-mina-sftp-starter</artifactId>
+        <version>4.18.0-SNAPSHOT</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-mina-starter</artifactId>
diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index 48427572139..b56f21bc470 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -1597,6 +1597,11 @@
         <artifactId>camel-milvus-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel.springboot</groupId>
+        <artifactId>camel-mina-sftp-starter</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-mina-starter</artifactId>
@@ -3989,6 +3994,11 @@
         <artifactId>camel-mina</artifactId>
         <version>4.18.0-SNAPSHOT</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-mina-sftp</artifactId>
+        <version>4.18.0-SNAPSHOT</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-minio</artifactId>

Reply via email to