build-helper-maven-plugin目标:正则表达式属性如何访问生成的属性

时间:2018-08-20 10:04:53

标签: java regex maven build-helper-maven-plugin

我尝试将项目版本解析为名为build-number的新变量,我使用以下插件

    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.7</version>
    <executions>
        <execution>
            <id>rename-property</id>
            <goals>
                <goal>regex-property</goal>
            </goals>
            <phase>package</phase>
            <configuration>
                <name>build-number</name>
                <value>${project.version}</value>
                <regex>\.</regex>
                <replacement>_</replacement>
                <failIfNoMatch>false</failIfNoMatch>
            </configuration>
        </execution>
    </executions>
</plugin>

pom.xml中的“我的属性”部分如下所示:

 <modelVersion>4.0.0</modelVersion>

 <groupId>xxx.xxx.xxx</groupId>
 <artifactId>xxx</artifactId>
 <version>1.1.2</version>
 <packaging>rar</packaging>

 <properties>
     <build-number></build-number>
 </properties>

我的问题是在启动mvn build之后我可以看到

[INFO] --- build-helper-maven-plugin:1.7:regex-property(rename-property)@ xxx --- [INFO]将属性“内部版本号”设置为“ 1_1_2”。

1 个答案:

答案 0 :(得分:0)

我发现当我们将相位设置为 validate 然后一切正常。