我正在尝试运行build.xml
,但出现一些错误
Buildfile: D:ProjectsOBSWorkspaceschoolformstorquebuild.xml
main:
BUILD FAILED
D:ProjectsOBSWorkspaceschoolformstorquebuild.xml:19:
The following error occurred while executing this line:
D:ProjectsOBSWorkspaceschoolformstorquebuild-torque.xml:52:
D:ProjectsOBSWorkspaceschoolformstorque${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
,它也将在所有构建中可见。
我认为这就是如何将参数从eclipse传递到ant (Eclipse->myproject->right click on build.xml->Arguments->VM Arguments
-DappRoot=ECM -DappName=ESW -Dapp.module=FNT -Dapp.env=LOC -DcloneNumber=1
)的答案