2

我在将自定义 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.xml 中定义的问题?因此可能是一个 Maven 生命周期问题?

4

1 回答 1

2

refid我为-Tag 使用了错误的属性名称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>
于 2016-05-09T12:29:59.097 回答