Can you help me understand what really the advantage of using a BOM pom is ?
more precisely what is the difference between using a BOM pom and writing the content of BOM pom in the dependencyManagement section of a parent pom ?
<dependencyManagement>
<dependencies>
<dependency>
<groupId>xxx.yyy</groupId>
<artifactId>com.so</artifactId>
<version>${my.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
vs
<dependencyManagement>
<dependencies>
...
</dependencies>
</dependencyManagement>