22

我有一个使用 Spring Framework 和 Git 的 Java 项目,我想显示一个内部版本号。我找到了Build Number Maven 插件。对于 Git,内部版本号是 Git 哈希。我不喜欢这样,我认为约会更具表现力。

我发现这篇优秀的博客文章解释了如何将内部版本号插件与 SVN 和 Git 的不同配置文件一起使用。由于我只是使用 Git,而不是创建新的配置文件,我只是将插件部分复制到我的构建标签中。

当我运行“mvn package”时,它告诉我:

[INFO] --- buildnumber-maven-plugin:1.0:create (default) @ sherd ---
[INFO] Storing buildNumber: 2011-08-04_21-48_stivlo at timestamp: 1312487296631

哪个看起来不错,但我想知道它存储在哪里?“git status” 没有检测到任何新文件,而且它似乎也不在 target/ 中(target/ 在我的 .gitignore 中)。

也许我必须更改配置以将内部版本号存储在文件中?如何使用内部版本号值?


感谢 Michael-O 的提示,我阅读了Maven 入门指南中关于如何过滤资源文件的章节。我在 src/main/resources/properties/application.properties 中创建了一个文件 application.properties,其内容如下:

# application properties
application.name=${pom.name}
application.version=${pom.version}
application.build=${buildNumber}

我在构建部分中添加了以下 XML 片段:

<resources>
    <resource>
        <directory>src/main/resources/properties</directory>
        <filtering>true</filtering>
    </resource>
</resources>

现在,当我从命令行“mvn package”调用时,此属性文件将保存在 target/classes/properties/application.properties 中,例如具有以下内容:

# application properties
application.name=Sherd Control Panel
application.version=1.0.1-SNAPSHOT
application.build=2011-08-05_05-55_stivlo

从命令行一切正常,但是,叹息,m2eclipse 给出了构建错误:

05/08/11 6.05.03 CEST: Build errors for obliquid-cp; 
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal
org.codehaus.mojo:buildnumber-maven-plugin:1.0:create (default) on project 
sherd: Cannot get the branch information from the scm repository : 
Exception while executing SCM command.

出于某种原因,m2eclipse 尝试连接到我的存储库,但它不能,因为它是一个使用 SSH 和私钥访问的 Git 存储库。我想知道我是否可以告诉 m2eclipse 不要连接到 Git。


经过更多挖掘后,我发现了关于 revisionOnScmFailure 选项,将其设置为 true,现在 m2eclipse 也可以工作了。作为参考,这是我使用的 buildnumber maven 插件的完整配置(它位于 build / plugins 部分的 pom.xml 中)。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>buildnumber-maven-plugin</artifactId>
    <version>1.0</version>
    <executions>
        <execution>
            <phase>generate-resources</phase>
            <goals>
                <goal>create</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <doCheck>false</doCheck>
        <doUpdate>false</doUpdate>
         <revisionOnScmFailure>true</revisionOnScmFailure>
        <format>{0,date,yyyy-MM-dd_HH-mm}_{1}</format>
        <items>
            <item>timestamp</item>
            <item>${user.name}</item>
        </items>
    </configuration>
</plugin>
4

4 回答 4

10

您不应该将revisionOnScmFailure选项设置为true,它不需要布尔值。将其设置为您想在 SCM 不可用时使用的修订字符串,就像na这样。这对您的情况无关紧要,因为您覆盖了内部版本号格式,但它会更正确。

请参阅buildnumber-maven-plugin 文档

于 2012-05-15T08:21:18.560 回答
4

将其存储在过滤的属性文件中。请参阅使用 maven 将版本号输出到文本文件

于 2011-08-04T20:10:40.157 回答
3

我无法重现 OP 报告的问题。在我的情况下,命令行和 m2eclipse 都可以正常工作,并且文件在target/classes文件夹中正确生成。@KasunBG 提供的答案不正确。仅当您使用以下内容时才会生成 buildNumber.properties:

        <format>{0,number}</format>
        <items>
            <item>buildNumber</item>
        </items>

buildNumber.properties 用于存储可以递增的数字。出于这个原因(我认为),如果您使用时间戳/scmVersion 等,插件不会生成此文件。

于 2012-10-15T00:05:28.850 回答
0

文档页面说属性文件存储在${basedir}/buildNumber.properties,这是在运行阶段时创建的buildnumber:create

于 2011-08-05T03:58:28.237 回答