You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/03/18 06:55:23 UTC

[GitHub] [camel-quarkus] zhfeng opened a new issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

zhfeng opened a new issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899
 
 
   I just rebuild the camel-quarkus and met the following failure.
   ```
   [INFO] -----< org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest >------
   [INFO] Building Camel Quarkus :: Elastichsearch Rest :: Runtime 1.1.0-SNAPSHOT [1/94]
   [INFO] --------------------------------[ jar ]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ camel-quarkus-elasticsearch-rest ---
   [INFO] 
   [INFO] --- directory-maven-plugin:0.3.1:highest-basedir (directories) @ camel-quarkus-elasticsearch-rest ---
   [INFO] Highest basedir set to: /home/zhfeng/work/zhfeng/camel-quarkus
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ camel-quarkus-elasticsearch-rest ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce (camel-quarkus-enforcer-rules) @ camel-quarkus-elasticsearch-rest ---
   [WARNING] 
   Dependency convergence error for commons-logging:commons-logging:1.2 paths to dependency are:
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-high-level-client:7.3.2
         +-org.elasticsearch.client:elasticsearch-rest-client:7.6.0
           +-org.apache.httpcomponents:httpasyncclient:4.1.4
             +-commons-logging:commons-logging:1.2
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-high-level-client:7.3.2
         +-org.elasticsearch.client:elasticsearch-rest-client:7.6.0
           +-commons-logging:commons-logging:1.1.3
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-client-sniffer:7.6.0
         +-org.apache.httpcomponents:httpclient:4.5.11
           +-commons-logging:commons-logging:1.2
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-client-sniffer:7.6.0
         +-commons-logging:commons-logging:1.1.3
   
   [WARNING] Rule 0: org.apache.maven.plugins.enforcer.DependencyConvergence failed with message:
   Failed while enforcing releasability the error(s) are [
   Dependency convergence error for commons-logging:commons-logging:1.2 paths to dependency are:
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-high-level-client:7.3.2
         +-org.elasticsearch.client:elasticsearch-rest-client:7.6.0
           +-org.apache.httpcomponents:httpasyncclient:4.1.4
             +-commons-logging:commons-logging:1.2
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-high-level-client:7.3.2
         +-org.elasticsearch.client:elasticsearch-rest-client:7.6.0
           +-commons-logging:commons-logging:1.1.3
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-client-sniffer:7.6.0
         +-org.apache.httpcomponents:httpclient:4.5.11
           +-commons-logging:commons-logging:1.2
   and
   +-org.apache.camel.quarkus:camel-quarkus-elasticsearch-rest:1.1.0-SNAPSHOT
     +-org.apache.camel:camel-elasticsearch-rest:3.1.0
       +-org.elasticsearch.client:elasticsearch-rest-client-sniffer:7.6.0
         +-commons-logging:commons-logging:1.1.3
   ]
   
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng edited a comment on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng edited a comment on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600524328
 
 
   mvn --version
   ```
   Apache Maven 3.5.4 (Red Hat 3.5.4-10)
   Maven home: /usr/share/maven
   Java version: 1.8.0_222, vendor: Oracle Corporation, runtime: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.222.b10-0.fc30.x86_64/jre
   Default locale: zh_CN, platform encoding: UTF-8
   OS name: "linux", version: "5.2.7-200.fc30.x86_64", arch: "amd64", family: "unix"
   ```
   I just use
   ```
   mvn clean install -DskipTests
   ```
   
   on the top directory of camel-quarkus to rebuild the whole tree.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600524328
 
 
   mvn --version
   ```
   Apache Maven 3.5.4 (Red Hat 3.5.4-10)
   Maven home: /usr/share/maven
   Java version: 1.8.0_222, vendor: Oracle Corporation, runtime: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.222.b10-0.fc30.x86_64/jre
   Default locale: zh_CN, platform encoding: UTF-8
   OS name: "linux", version: "5.2.7-200.fc30.x86_64", arch: "amd64", family: "unix"
   ```
   I just use
   ```
   mvn clean install -DskipTests
   ``
   on the top directory of camel-quarkus to rebuild the whole tree.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600502734
 
 
   yeah, I rebuilt the whole tree.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] ppalaga commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
ppalaga commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600478226
 
 
   It is passing on the CI and I cannot reproduce too. Have you rebuilt the whole tree?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] lburgazzoli commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
lburgazzoli commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600526579
 
 
   As far as I remember quarkus now requires maven 3.6.x

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-601087200
 
 
   @ppalaga it might be helpful to mention on our contribution guide. It said Maven 3.5.3+ as prerequisites now.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-601039562
 
 
   Thanks @lburgazzoli  and it works after upgrade maven to 3.6.3
   
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] ppalaga commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
ppalaga commented on issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899#issuecomment-600518502
 
 
   Could you please post the exact steps to reproduce (incl. the output of `mvn --version`)?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-quarkus] zhfeng closed issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"

Posted by GitBox <gi...@apache.org>.
zhfeng closed issue #899: camel-quarkus-elasticsearch-rest build fails with "Dependency convergence error"
URL: https://github.com/apache/camel-quarkus/issues/899
 
 
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services