JiriOndrusek opened a new issue, #8920: URL: https://github.com/apache/camel-quarkus/issues/8920
## Description The minio integration tests and native profile have been disabled on the `camel-main` branch because of a version incompatibility between `camel-minio` and `quarkiverse-minio`. `camel-minio` (SNAPSHOT) is compiled against minio SDK 9.x APIs (`objectLock()`, `stream(InputStream, Long, Long)`, `ServerSideEncryption$CustomerKey`), but `quarkiverse-minio` 3.8.6 ships minio SDK 8.6.0. This causes `NoSuchMethodError` and `NoClassDefFoundError` at runtime. The fix is to wait for [quarkiverse-minio 3.9.1](https://github.com/quarkiverse/quarkus-minio/pull/8917) which bumps minio to 9.0.3. ## What needs to be done Once `quarkiverse-minio` 3.9.1 is released and picked up by Quarkus: 1. Remove the `@Disabled` annotation on `MinioTest.java` 2. Uncomment the native profile in `integration-tests/minio/pom.xml` ## References - quarkiverse-minio 3.9.1 PR: https://github.com/quarkiverse/quarkus-minio/pull/8917 -- 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]
