gpt4 book ai didi

java - 无法将 Maven 属性传递给 ant run 插件

转载 作者:行者123 更新时间:2023-11-30 08:37:35 25 4
gpt4 key购买 nike

我在传递自定义 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 运行 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 生命周期问题?

最佳答案

我为 property -Tag 使用了错误的属性名称 refid。将属性更改为 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>

关于java - 无法将 Maven 属性传递给 ant run 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37092045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com