Maven Release Plugin - prepare creates tag of Snapshot version instead of release version
问题 I have following project structure: framework framework-parent-pom framework-something ... In the pom.xml of framework-parent-pom I have defined following plugin: <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> <configuration> <branchBase>http://.../svn/REPO/branches/framework</branchBase> <tagBase>http://.../svn/REPO/tags/releases/framework</tagBase> <tagNameFormat>release-@{project.version}</tagNameFormat> <releaseProfiles>release</releaseProfiles> <