Skip to content

Commit 7d23dae

Browse files
committed
fix: Missing jsch reflection classes
1 parent d035b8a commit 7d23dae

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

  • extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment

extensions/ftp/deployment/src/main/java/org/apache/camel/quarkus/component/ftp/deployment/FtpProcessor.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ ReflectiveClassBuildItem registerJSchCertificateClasses() {
3939
"com.jcraft.jsch.KeyPairEd25519",
4040
"com.jcraft.jsch.KeyPairEd448",
4141
"com.jcraft.jsch.KeyPairDSA",
42-
"com.jcraft.jsch.SignatureRSA",
43-
"com.jcraft.jsch.SignatureECDSA",
44-
"com.jcraft.jsch.jce.SignatureEd25519")
42+
"com.jcraft.jsch.KeyPairEdDSA",
43+
"com.jcraft.jsch.KeyPairPKCS8",
44+
"com.jcraft.jsch.jce.SignatureEd25519",
45+
"com.jcraft.jsch.IdentityFile",
46+
"com.jcraft.jsch.LocalIdentityRepository",
47+
"com.jcraft.jsch.jce.KeyPairGenEdDSA")
4548
.build();
4649
}
4750
}

0 commit comments

Comments
 (0)