作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取 list 中的 mercurial 修订号。我已阅读以下说明:
http://maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.html
Maven + Mercurial for Build Numbers
我没有收到错误消息,但 list 中的 SCM-Revision 属性始终为空。
来自 POM 的部分:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>hgchangeset</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>true</doUpdate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<SCM-Revision>${buildNumber}</SCM-Revision>
</manifestEntries>
</archive>
</configuration>
</plugin>
最佳答案
${buildNumber} 用于 svn。如果您使用 mercurial,则需要使用 ${changeSet} 来获取 mercurial 修订号。
关于maven buildnumber 插件不适用于 mercurial,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7832212/
我是一名优秀的程序员,十分优秀!