这是build.xml
在 Netbeans 上的非 Maven 项目中的脚本,每次我“构建”时,它都会增加 1。
<target name="-pre-compile" description="Sets the buildversion for the current build">
<propertyfile file="${src.dir}\recursos\language.properties">
<entry key="application.buildnumber" value="1" type="int" operation="+"/>
<entry key="application.builddate" value="now" type="date"/>
</propertyfile>
</target>
这是我使用的资源文件,我也希望 Maven 编写它:langunge.properties
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。