我的項目結構的錯誤是這樣的:的使用maven版本插件
--Parent
--Submodule1
--Submodule2
--pom.xml(main)
家長是容納所有Maven插件配置的項目,librairies版等,這是所有項目的父是的父所有子模塊。 我配置的pom.xml(主)插件,像這樣:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<tagBase>svn://192.168.5.213/hxbos/hxecp-src/tags/hxbos</tagBase>
<branchBase>svn://192.168.5.213/hxbos/hxecp-src/branches/hxbos</branchBase>
<remotetagging>true</remotetagging>
<checkModificationExcludes>
<checkModificationExclude>**/*.log</checkModificationExclude>
<checkModificationExclude>**/*.jar</checkModificationExclude>
<checkModificationExclude>**/system*</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
,這是我的SCM信息:
<scm>
<connection>scm:svn:svn://192.168.5.213/hxbos/hxecp-src/trunk/hxbos</connection>
<developerConnection>scm:svn:svn://192.168.5.213/hxbos/hxecp-src/trunk/hxbos</developerConnection>
<url>scm:svn:svn://192.168.5.213/hxbos/hxecp-src/trunk/hxbos</url>
</scm>
但是當我使用:MVN發佈:準備,出現錯誤:
The svn tag command failed.
Command output:
svn: 「svn://192.168.5.213/hxbos/hxecp-src/trunk/hxbos」 does not exist in
revision 0.
爲什麼是修訂版0?
導致版本庫不存在。檢查在具有給定IP地址的機器上是否存在/ hxbos/hxecp-src下的存儲庫.. – khmarbaise
我確定存儲庫退出,並且正在使用。 – guolei
這有幫助嗎? http://maven.apache.org/plugins/maven-release-plugin/faq。html#inheritScm –