File tree Expand file tree Collapse file tree
src/main/java/org/apache/camel/quarkus/component/ssh/runtime
integration-tests/ssh/src/main/java/org/apache/camel/quarkus/component/ssh/it Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 <groupId >org.apache.camel.quarkus</groupId >
4949 <artifactId >camel-quarkus-support-bouncycastle</artifactId >
5050 </dependency >
51- <!-- TODO: Remove this as it's an optional dependency -->
52- <!-- https://github.com/apache/camel-quarkus/issues/2212 -->
53- <dependency >
54- <groupId >net.i2p.crypto</groupId >
55- <artifactId >eddsa</artifactId >
56- </dependency >
5751 <dependency >
5852 <groupId >org.graalvm.sdk</groupId >
5953 <artifactId >nativeimage</artifactId >
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1717package org .apache .camel .quarkus .component .ssh .it ;
1818
1919import java .nio .file .Paths ;
20- import java .security .Security ;
2120
22- import jakarta .annotation .PostConstruct ;
2321import jakarta .enterprise .context .ApplicationScoped ;
2422import jakarta .inject .Named ;
25- import net .i2p .crypto .eddsa .EdDSASecurityProvider ;
2623import org .apache .camel .builder .RouteBuilder ;
2724import org .apache .camel .component .ssh .SshComponent ;
2825import org .apache .sshd .common .keyprovider .FileKeyPairProvider ;
@@ -41,11 +38,6 @@ public class SshRoutes extends RouteBuilder {
4138 @ ConfigProperty (name = "ssh.password" )
4239 String password ;
4340
44- @ PostConstruct
45- public void init () {
46- Security .addProvider (new EdDSASecurityProvider ());
47- }
48-
4941 @ Override
5042 public void configure () throws Exception {
5143 // Route without SSL
You can’t perform that action at this time.
0 commit comments