我正在尝试运行ant build.xml
,但是会发生一些错误
Buildfile: D:\Projects\OBSWorkspace\schoolforms\torque\build.xml
main:
BUILD FAILED
D:\Projects\OBSWorkspace\schoolforms\torque\build.xml:19:
The following error occurred while executing this line:
D:\Projects\OBSWorkspace\schoolforms\torque\build-torque.xml:52:
D:\Projects\OBSWorkspace\schoolforms\torque\${torque.home}\lib not found.
在此项目
${torque.home}
中找不到哪个目录,指示 Assume torque.home is specified through -D option
in ant invocation
-D指定了什么,如何找到
${torque.home}
值? 最佳答案
以这种方式使用ant build -Dtorque.home="value for torque.home"
。使用-D
参数,您可以直接从命令行传递属性以进行构建。如果您从命令行传递值来构建,即使您传递invokeAll=false
,它也会在所有构建中可见。
我认为here是如何将参数从eclipse传递到ant(Eclipse->myproject->right click on build.xml->Arguments->VM Arguments-DappRoot=ECM -DappName=ESW -Dapp.module=FNT -Dapp.env=LOC -DcloneNumber=1
)的答案