我正在编写一些 Ant 脚本,并在我的脚本中使用 ant-contrib.jar 文件。我的 ant 脚本内容遵循代码块,但不能按照我的要求工作。
<if>
<equals arg1="${require.html}" arg2="1"/>
<then>
<script language="javascript">
<![CDATA[
println("<h3>Selected Project Directory: ${project.dir}</h3>");
println("<h3>Generated reports are at the location ${dir.report}</h3>");
]]>
</script>
</then>
</if>
我正在尝试在带有 Ant 脚本的嵌入式 JavaScript 中使用 ${project.dir} 变量。在这里使用脚本我正在尝试生成 html 文件。但浏览器上显示的输出如下:
Selected Project Directory: ${project.dir}
Generated reports are at the location ${dir.report}
预期输出:
Selected Project Directory: C:\Project
Generated reports are at the location C:\Report