I have one parent pom where I am declaring version range for one artifact like below
parent pom
<dependencyManagement>
<dependency>
<groupId>com.abc</groupId>
<artifactId>arti</artifactId>
<version>[1.0.0,2.0.0)</version>
</dependency>
<dependencyManagement>
child pom
<parent>
{parent info}
</parent>
<dependencies>
<dependency>
<groupId>com.abc</groupId>
<artifactId>arti</artifactId>
</dependency>
</dependencies>
when I am trying to run clover build, it is giving below error
setup failed for artifact com.abc:arti:null:jar....The version can not be empty.
Anybody has any idea ?
Please note that maven clean install build is working totally fine.
Recommended Learning For You
Level up your skills with Atlassian learning
Atlassian DevOps essentials
Learn how to build, automate, and improve DevOps processes used for the development and delivery of software and other digital products.
Tracking and improving DevOps metrics
Make informed decisions about current and future projects and deadlines to maximize your team's productivity and keep morale high.
Exploring Atlassian Cloud products for agile and DevOps
Coordinate a suite of Atlassian Cloud products for greater collaboration and trust, higher-quality solutions, faster releases, and more.