我正在尝试获取清单中的汞修订号。我已经阅读了以下说明:
http://maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.htmlMaven + Mercurial for Build Numbers
我没有得到错误消息,但清单中的SCM-Revision属性始终为空。
Section from 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版本号。