maven buildnumber 插件无法与 Mercurial 一起使用

发布于 2024-12-11 11:10:36 字数 1478 浏览 0 评论 0原文

我正在尝试获取清单中的 Mercurial 修订号。我已阅读以下说明:

http:// /maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.html

Maven + Mercurial for Build Numbers

我没有收到错误消息,但 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>

我该如何解决这个问题?

I'm trying to get the mercurial revision number in the manifest. I've read following instructions:

http://maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.html

Maven + Mercurial for Build Numbers

I do not get an error message but the SCM-Revision property in the manifest is always empty.

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>

how can I resolve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2024-12-18 11:10:36

${buildNumber} 用于 svn。如果您使用 Mercurial,则需要使用 ${changeSet} 来获取 Mercurial 修订号。

${buildNumber} is for svn. If you use mercurial you need to use ${changeSet} to get the mercurial revision number.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文