每次Build后,使用Maven增加属性值

时间:2016-09-08 11:57:39

标签: java maven maven-3 pom.xml build-numbers

这是build.xml上的一个非maven项目中的脚本,在Netbeans上,每次我“构建”时,它都会增加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也写它:languange.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的内容,但似乎不符合我的需要。

我知道我必须添加一个插件,带有一些Executions / Goals标签,但我不知道如何告诉Maven将该属性的值增加1。

1 个答案:

答案 0 :(得分: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-pluginsrc/main/resources/build.properties阶段的initialize文件中读取文件(通过其read-projet-properties目标),因此在默认情况下很早建立周期
  • 现在,buildnumber属性已从文件和部分构建中拉出。在同一阶段,我们使用gmave-plugin通过一个小脚本增加其值。
  • 然后在generate-resources阶段(作为示例)我们write buildnumber(覆盖)新值到同一个文件,以供将来的迭代使用。这一步是基本的,因为我们需要在某个地方存储状态,它应该在版本控制下,即项目的一部分。 src/main/resources可能不是最佳选择,因为它将与应用程序一起打包(您可以随时跳过它),因此您可以将其存储在其他文件中(但它仍然应该是版本化项目的一部分)。
  • 然后,作为调试/校对,antrun将打印当前的buildnumber值。

要使其正常工作,buildnumber文件中build.properties属性的初始值应设置为0(该属性必须预先存在)。然而,这个文件也有可能在版本控制下持续发生冲突,这就是为什么整个行为应该被包装到maven配置文件中并且仅在某些情况下使用(例如在发布期间的团队领导者)。这种约束实际上会导致更标准的方法:让CI服务器处理整个机制,而不是maven。

附注:遗憾的是,properties-maven-plugin没有提供太多配置,它总是会读取和写入所有构建属性,这在大多数情况下是无害的,尽管不是最佳的。更好的方法是使用包含/排除机制来过滤并只读取/写入buildnumber属性。