我在我的父 pom 中使用 buildnumber-maven-plugin 创建一个内部版本号。这工作正常。但是,我需要在我的孩子中有 ${buildNumber} 属性。我已经为我孩子的该属性添加了 antrun ECHO,但它不存在。我怎样才能将该属性传播给孩子?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<buildNumberPropertiesFileLocation>buildnumber.properties</buildNumberPropertiesFileLocation>
<format>{0,number,integer}</format>
<items>
<item>buildNumber0</item>
</items>
</configuration>
</plugin>