0

上下文:我正在尝试在编译期间构建 web.xml。我使用 ant 脚本来执行此任务。ant 脚本使用属性文件中定义的属性来完成此任务。

使用 Maven-ant-plugin 调用 ant 脚本。

但是,当我进行 Maven 构建时。它失败并显示消息“An Ant BuildException 无法从资源 project.properties 加载定义。找不到它。”

Ant 脚本如下所示:



<project name="xyz" basedir="." default="make_webxml">
<target name="make_webxml">
<taskdef resource="project.properties"/>
<echo file="${webappdir}/web.xml">
<>
<>
</target>
</project>


${webappdir} 是在属性文件中定义的


马文POM:

<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <executions>
    <execution>
      <phase>process-resources</phase>
      <configuration>
        <target>
        <ant dir="build/ant/" />
        </target>
        <tasks>  
              <ant antfile="build/ant/bld_webxml.xml" target="make_webxml"/>
        </tasks>
      </configuration>
      <goals>
        <goal>run</goal>
      </goals>
    </execution>
  </executions>
  </plugin> 

难道我做错了什么?

提前致谢

4

1 回答 1

0

如果您将 project.properties 文件存储在 build/ant/ 目录中,ant 不会知道在那里进行搜索。此外,代替 taskdef 使用:

<property file="build/ant/project.properties"/>

在我的本地机器上工作。

这是详细的文档:

http://ant.apache.org/manual/Tasks/property.html

于 2014-09-27T18:36:45.143 回答