I have a project with two modules. The core module has the following in pom:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>project.X</groupId>
<artifactId>project_X</artifactId>
<version>42</version>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
this dependency on pom declared without scope import
and second module of the same project has the following:
<dependencies>
<dependency>
<groupId>project.X</groupId>
<artifactId>project_X</artifactId>
<type>pom</type>
</dependency>
</dependencies>
And all of this works fine, but if I put import in the core pom like this:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>project.X</groupId>
<artifactId>project_X</artifactId>
<version>42</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
then the second module will not compile due to the dependency has no version declared. But, as far as I understand, it should compile with scope import in the root module and should NOT compile if vice versa. Does anybody has any idea of the reason of such behaviour?
Thanks.
That is how the feature was implemented over 15 years ago:
and I do believe the current implementation is in sync with documentation:
since you are not supposed to define dependencies (only versions, i.e. managed dependencies) in BOM's, defining dependency on BOM does not make any sense.