Hello,

I would like to use the maven-release-plugin and set a different
release tag without the need of interacting.
Additional I need to use the computed release version as part of the tag.

I tried to configure it like this:
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-release-plugin</artifactId>
  <configuration>
    <tag>${project.groupId}.${project.artifactId}-${releaseVersion}</tag>
  </configuration>
</plugin>

Unfortunately, there is no ${releaseVersion} property.
${project.version} is computed with the old -SNAPSHOT value.

Is there a way, how I can configure the maven-release-plugin to work this way?

Regards,
Lars

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to