我在我的项目中使用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>我不明白为什么SCM的错误
发布于 2016-08-24 15:58:17
根据文档,您的<url>标记是不正确的。它应该是简单的http,没有scm:git。
https://stackoverflow.com/questions/39127626
复制相似问题