I'm trying to make a release with maven. I got one project ws-client
in 2.4-SNAPSHOT
(I allready have released this one).
This project is in dependencies of metier
project (still in 2.3-SNAPSHOT
). Here is the dependency in pom.xml :
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ws-client</artifactId>
<version>2.4-SNAPSHOT</version>
</dependency>
When I'm trying to release the metier
project, I got this error :
Cannot start a release due to snapshot dependencies :
dependency - ws-client
I tried to change the version tag with ${project.version}
or ${project.parent.version}
, I allways have the error.
Please if you know what to do ?