我有一个使用 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>