0

我在我的项目中使用maven-3.2.3

当我执行mvn release:prepare时,一切都很顺利。

但执行后mvn release:perform我有以下错误:

没有提供 SCM URL 来执行从

我的 pom.xml 中有 scm 元素:

<scm>
    <url>scm:git:http://my-project-url/</url>
    <connection>scm:git:http://my-project-url/</connection>
    <developerConnection>scm:git:http://my-project-url/</developerConnection>
    <tag>HEAD</tag>
</scm>

我不明白为什么单片机错误

4

1 回答 1

0

根据文档,您的<url>标签不正确。它应该是简单http的,没有scm:git

于 2016-08-24T15:58:17.930 回答