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

jamesnetherton pushed a commit to branch 3.33.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/3.33.x by this push:
     new 35292e4dce chore: remove unused build step on sftp/jsch
35292e4dce is described below

commit 35292e4dcec56868792376322f638c17cafee158
Author: GaĆ«lle Fournier <[email protected]>
AuthorDate: Thu May 21 08:07:50 2026 +0200

    chore: remove unused build step on sftp/jsch
---
 .../component/ftp/deployment/FtpProcessor.java       | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git 
a/extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment/FtpProcessor.java
 
b/extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment/FtpProcessor.java
index 95ba66fac3..218c96e6f6 100644
--- 
a/extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment/FtpProcessor.java
+++ 
b/extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment/FtpProcessor.java
@@ -18,7 +18,6 @@ package org.apache.camel.quarkus.component.ftp.deployment;
 
 import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.builditem.FeatureBuildItem;
-import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
 
 class FtpProcessor {
 
@@ -28,23 +27,4 @@ class FtpProcessor {
     FeatureBuildItem feature() {
         return new FeatureBuildItem(FEATURE);
     }
-
-    @BuildStep
-    ReflectiveClassBuildItem registerJSchCertificateClasses() {
-        // JSch OpenSSH certificate support classes for @cert-authority 
parsing in known_hosts
-        // The quarkus-jsch reflection config is missing several classes that 
JSch loads dynamically.
-        return ReflectiveClassBuildItem.builder(
-                "com.jcraft.jsch.KeyPairRSA",
-                "com.jcraft.jsch.KeyPairECDSA",
-                "com.jcraft.jsch.KeyPairEd25519",
-                "com.jcraft.jsch.KeyPairEd448",
-                "com.jcraft.jsch.KeyPairDSA",
-                "com.jcraft.jsch.KeyPairEdDSA",
-                "com.jcraft.jsch.KeyPairPKCS8",
-                "com.jcraft.jsch.jce.SignatureEd25519",
-                "com.jcraft.jsch.IdentityFile",
-                "com.jcraft.jsch.LocalIdentityRepository",
-                "com.jcraft.jsch.jce.KeyPairGenEdDSA")
-                .build();
-    }
 }

Reply via email to