gansheer commented on issue #8333:
URL: https://github.com/apache/camel-quarkus/issues/8333#issuecomment-4012113935

   I discovered some apache sshd version missmatch while working on native 
support. 
   
   On quarkus bom side current camel-quarkus mina-sftp dependency tree gives:
   ```
   ├── sshd-sftp: 2.17.1 (from camel-mina-sftp 4.18.0)
   │   └── sshd-core: 2.12.1 (from Quarkus BOM via ${sshd.version})
   │       └── sshd-common: 2.12.1
   ```
   On camel side from camel-mina-sftp I get:
   ```
   +- org.apache.sshd:sshd-sftp:jar:2.17.1:compile
   |  +- org.apache.sshd:sshd-core:jar:2.17.1:compile
   |  |  \- org.apache.sshd:sshd-common:jar:2.17.1:compile
   ```
   As a result at native image build time, code compiled against 2.17.1 tries 
to access a field that doesn't exist in 2.12.1 (and there might be more 
incompatibilities).
   
   How should this kind of version missmatch be handled ? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to