上下文:我正在尝试在编译期间构建 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>
难道我做错了什么?
提前致谢