上下文:我正试图在编译过程中构建一个web.xml。I使用蚂蚁脚本来执行此任务。ant脚本使用属性文件中定义的属性来完成此任务。
ant脚本是使用Maven 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}是属性文件中定义的
MAVEN 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>
我做错什么了吗?
提前感谢
如果您将project.properties文件存储在build/ant/目录中,ant不知道在那里搜索它。此外,代替taskdef使用:
<property file="build/ant/project.properties"/>
在我的本地机器上工作。
以下是详细的文档:
http://ant.apache.org/manual/Tasks/property.html