I have dependency management in child pom. How can I reference this from parent pom.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
I tried moving this to parent pom and add this in child pom without version but child is unable to identify version
I tried moving this to parent pom and add this in child pom without version but child is unable to identify version
Is there a suggested way to use dependency management in child pom when we have parent pom?