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
Reporting for DevOps
Identify four key DevOps metrics and learn how to use Jira reports to track your team's progress and performance.
Explore 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.
Monitor component health with scorecards in Compass
Learn what scorecards are and their purpose in measuring the health of software components and improving DevOps practices.