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 to manage the product lifecycle by building, automating, and improving processes with Atlassian's approach to DevOps.
Jira Automation
Reduce project complexity and optimize your team's processes through the power of automation.
Bitbucket Pipelines Configuration
Build better software and release more often by learning how to implement a CI/CD solution with Bitbucket Pipelines.