Re: How to solve dependency convergence issue

2018-03-07 Thread Mirko Friedenhagen
Hello Niranja, you may find more details at https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html. Basically a version you manage in your project is more important than one managed in your project's parent which is more important than a version coming into the tre

Re: How to solve dependency convergence issue

2018-03-06 Thread Anders Hammar
This shouldn't be solved via exclusions but rather by specifying the wanted version in the dependencyManagement section of your project. /Anders On Tue, Mar 6, 2018 at 10:37 PM, Niranjan Rao wrote: > Greetings, > > > I am using maven-enforcer-plugin to ensure only one version of jar files > is

How to solve dependency convergence issue

2018-03-06 Thread Niranjan Rao
Greetings, I am using maven-enforcer-plugin to ensure only one version of jar files is loaded. In case of conflicts, I normally would use exclusions to weed out unwanted jars. Normally I would pick latest version of library. I am not clear how to solve following problem reported by maven enf