Is the maven-release-plugin able to update a variable to actual release version in a source file?
As an example, if I have the following class in the source tree:
/**
* Does actually nothing
*
* @since ${project.version}
*/
public class NewClass {
...
}
the maven release plugin could replace the variable ${project.version}
with the actual version of the generated release.