zhfeng commented on issue #5690:
URL: https://github.com/apache/camel-quarkus/issues/5690#issuecomment-1919044747

   @jamesnetherton It seems be related to 
   
   
https://github.com/apache/camel-quarkus/blob/e3a2e6c07aadc7ecf4c088750cf8be56a0ef97fe/poms/bom/src/main/generated/flattened-full-pom.xml#L10360-L10363
   ```xml
         <dependency>
           <groupId>com.squareup.okhttp3</groupId><!-- 
io.quarkus:quarkus-bom:3.6.0 -->
           <artifactId>okhttp</artifactId><!-- io.quarkus:quarkus-bom:3.6.0 -->
           <version>3.14.9</version><!-- io.quarkus:quarkus-bom:3.6.0 -->
         </dependency>
   ```
   
   and they are imported from `quarkus-qpid-jms-bom` which has the outdated 
`quarkus-bom`
   
https://github.com/apache/camel-quarkus/blob/e3a2e6c07aadc7ecf4c088750cf8be56a0ef97fe/poms/bom/pom.xml#L60-L66
   
   I try to upgrade quarku-qpid-jms to `2.6.0-SNAPSHOT` with `quarkus:3.7.0` 
and now the `okhttp` version is `4.8.1` and there is the same issue with the 
plaform minio tests when running `integration-tests/minio`.
   
   Then @ppalaga the following option in `poms/bom/pom.xml` is really working? 
or is there anyting we missed?
   
   ```xml 
                 <originExcludes>
                       <!-- Remove BOM entries from the flattened BOM which 
come from quarkus-bom -->
                       <!-- This is mainly to get rid of potentially outdated 
quarkus-bom imports brought -->
                       <!-- via other participant's BOMs that we are importing 
-->
                       <originExclude>io.quarkus:quarkus-bom</originExclude>
                  </originExcludes>
   ```


-- 
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: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to