部署SNAPSHOT的maven-release-plugin

时间:2016-01-25 18:15:08

标签: java git maven maven-release-plugin

我有一个Maven项目,现在想用maven-release-plugin发布它。不幸的是,执行mvn release:prepare后,git标签包含旧版本号(1.0-SNAPSHOT),当部署到artifactory时,使用SNAPSHOT版本而不是所需的发行版本。

我已经发现了this错误,但所有建议的解决方案对我都不起作用。

我正在使用:

  • Apache Maven 3.3.9
  • git version 2.7.0(德语)

我已经尝试了多个版本的发布插件(2.4,2.5.3,2.5.1),但没有一个被唤醒。 有没有人能解决这个问题?

EDIT1: 当前的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>mygroupid</groupId>
  <artifactId>myartifact</artifactId>
  <version>1.0-SNAPSHOT</version>

  <!-- [...] -->

  <scm>
    <url>http://url/to/gitlab</url>
    <connection>scm:git:git@gitlab:group/repo.git</connection>
    <developerConnection>scm:git:git@gitlab:group/repo.git</developerConnection>
    <tag>HEAD</tag>
  </scm>

  <!-- [...] -->

  <distributionManagement>
    <!-- [...] -->
  </distributionManagement>
</project>

0 个答案:

没有答案