这是build.xml
上的脚本,在一个非maven项目中,在Netbeans上,每次我"构建"时,它都会增加1。
<target name="-pre-compile" description="Sets the buildversion for the current build">
<propertyfile file="${src.dir}recursoslanguage.properties">
<entry key="application.buildnumber" value="1" type="int" operation="+"/>
<entry key="application.builddate" value="now" type="date"/>
</propertyfile>
</target>
这是我使用的资源文件,我希望Maven也写它:
application.title=Software title...
#build version control
application.buildnumber=334
application.builddate=2016/09/07 15:16
application.version=1
application.icon=/icons/icon.png
我已经了解了mojohaus,但似乎不适合我的需要。
我知道我必须添加一个插件,与一些执行/目标标签,但我不知道如何告诉Maven增加该属性的值1。
我是这样成功实现的:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>initialize</phase>
<id>read-props</id>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>src/main/resources/build.properties</file>
</files>
</configuration>
</execution>
<execution>
<phase>generate-resources</phase>
<id>write-props</id>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>src/main/resources/build.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>add-dynamic-properties</id>
<phase>initialize</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
project.properties.buildnumber = (project.properties.buildnumber.toInteger() + 1).toString();
</source>
</configuration>
</execution>
</executions>
</plugin>
<!-- debug print out, to be removed afterwards -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo message="${buildnumber}" />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
我们实际在做什么:
- 我们使用
properties-maven-plugin
从文件中读取文件(通过其read-projet-properties
目标),src/main/resources/build.properties
在initialize
阶段,因此在默认构建周期的早期 现在, - 然后在
generate-resources
阶段(作为一个例子),我们将buildnumber
的新值(覆盖)写入同一个文件,以便下一次迭代。这一步是基础的,因为我们需要将状态存储在某个地方,并且它应该在版本控制之下,也就是说,是项目的一部分。src/main/resources
可能不是最好的选择,因为它将与应用程序打包(您可以跳过它),所以您可以将它存储在其他文件中(但它仍然应该是版本化项目的一部分)。 - 然后,作为调试/证明,
antrun
将打印当前buildnumber
值。
buildnumber
属性已经从文件和我们构建的一部分中拉出来了。在同一阶段,我们使用gmave-plugin
通过一个小脚本来增加它的值。要使其工作,build.properties
文件中buildnumber
属性的初始值应该设置为0(该属性必须预先存在)。然而,在版本控制下,这个文件也有持续冲突的风险,这就是为什么整个行为应该被包装到maven配置文件中,并且只在某些情况下使用(例如,在发布期间的团队领导)。这个约束实际上会导致一种更标准的方法:让CI服务器处理整个机制,而不是maven。
旁注:不幸的是,properties-maven-plugin
没有提供太多配置,它将始终读取和写入所有构建属性,这在大多数情况下是无害的,尽管不是最佳的。最好是有一个包含/排除机制来过滤,只读/写buildnumber
属性。