我在传递自定义maven属性时遇到问题(版本)
maven使用maven-antrun-plugin.
我已经阅读了Maven antrun: pass maven properties to ant,但这并没有解决问题。
我的问题与上述SO问题中的问题存在一个区别。
在我的情况下,maven-antrun-plugin
作为父项目的子项执行,其中属性被定义为所有模块的全局属性。
maven-antrun-plugin是该项目的一个模块。
父pom片段如下所示:
<project ...>
<!-- Parent -->
<modelVersion>4.0.0</modelVersion>
<groupId>xxx</groupId>
<artifactId>xxx</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<my.project.version>0.0.3-SNAPSHOT</my.project.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<java.version>1.7</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
ant run pom看起来像这样。该属性名为target.version
<project>
<!-- Module -->
<parent>
<groupId>xxx</groupId>
<artifactId>xxx</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ant-magic</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="compile_classpath"
refid="maven.compile.classpath"/>
<property name="outputDir"
value="${project.build.outputDirectory}"/>
<property name="sourceDir"
value="${project.build.sourceDirectory}"/>
<property name="compile_classpath" refid="maven.compile.classpath"/>
<property name="target-version" refid="${my.project.version}"/>
<echo message="Passed target version to ant build script: ${target-version}"/>
<ant antfile="${basedir}/src/main/ant/create-dist.xml"
target="deploy-ea"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
在执行包含antrun-maven-plugin的子模块的构建期间发生以下maven构建错误。
`An Ant BuildException has occured: Reference 0.0.3-SNAPSHOT` not found
这很有趣,因为这是maven属性的值。
我也尝试过使用简单的属性名作为
的参数refid attribute
就我而言
<property name="target-version" refid="my.project.version"/>
导致以下错误:
An Ant BuildException has occured: Reference my.project.version not found
ant脚本使用以下属性
<property name="myproject-jar" value="mymodulename-${target-version}.jar"/>
我的配置中是否有错误,或者是在父pom中定义属性的问题。这可能是一个maven生命周期问题?
答案 0 :(得分:1)
我使用错误的名称refid
作为property
- 标记。将属性更改为value
解决了问题。此外,我将tasks
代码替换为target
,因为它已被标记为已弃用。但这对给定的问题没有影响。
<project>
...
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ant-magic</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="compile_classpath"
refid="maven.compile.classpath"/>
<property name="outputDir"
value="${project.build.outputDirectory}"/>
<property name="sourceDir"
value="${project.build.sourceDirectory}"/>
<property name="compile_classpath" refid="maven.compile.classpath"/>
<property name="target-version" value="${my.project.version}"/> <!-- PROBLEM refid should be value-->
<echo message="Passed target version to ant build script: ${target-version}"/>
<ant antfile="${basedir}/src/main/ant/create-dist.xml"
target="deploy-ea"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>