我尝试将项目版本解析为名为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”。
答案 0 :(得分:0)
我发现当我们将相位设置为
validate
然后一切正常。