我们使用git和maven-modules的maven-release-plugin有问题。
我们有以下项目结构:
pom.xml(ApplicationTest and ApplicationConf are modules)
ApplicationWeb
---pom.xml(parent pom in root folder)
ApplicationTest
---pom.xml(parent pom in root folder)
ApplicationConf
---pom.xml(All environments are modules. This has no parent pom)
---ConfDev
-------pom.xml(parent ApplicationConf)
---ConfTst
-------pom.xml(parent ApplicationConf)
---ConfAcc
-------pom.xml(parent ApplicationConf)
---ConfPrd
-------pom.xml(parent ApplicationConf)
现在我们想发布dev config(Parent已经发布)。这是通过在ApplicationConf / ConfDev / pom.xml上执行maven发布。
现在发布准备失败了,因为它在想要推送更改的时候使用了错误的git url。它附加了我们想要释放到git url的pom的工件id。
http://gitrepourl/git_repo.git/artifact-id
我们在ApplicationConf中定义了pom中的scm设置,因此是所有环境的根。
<scm>
<developerConnection>scm:git:http://gitrepourl/git_repo.git</developerConnection>
</scm>
我们是否有错误的项目结构,错误的设置或者这是maven-release-plugin中的错误?
使用的版本:
maven-release-plugin 2.3.2和2.4.1
Maven 3.0.5
可能的解决方案:
从配置父pom中删除所有配置项目作为模块,并添加到每个pom更多scm信息,所以它看起来像这样:
<scm>
<url>https://github.com/XXX/YYY</url>
<connection>scm:git:ssh://git@github.com/XXX/YYY.git</connection>
<developerConnection>scm:git:ssh://git@github.com/XXX/YYY.git</developerConnection>
现在我可以在每个pom上执行发布。这是正确的溶解吗?
答案 0 :(得分:0)
Maven自动将子模块artifactId添加到scm / connection-URL。 要解决此问题,您必须将scm-Node从父级复制到每个子模块。