在 Eclipse 中构建脚本参数
所以我有这个构建脚本,它基本上编译并生成一个 EAR 文件。该脚本使用“外部工具配置”向导(带有手提箱图标的播放按钮)在 Eclipse 中执行。该脚本的值似乎是从属性文件或类似的文件中选取的。
一个这样的例子是基本目录:
<echo message="${display.version}"/>
<echo message="${basedir}"/>
我已经搜索了整个工作区,但找不到包含这些项目值的单个文件。 我的问题是,这些值如何传递给这个脚本?
so I have this build script that basically compiles and generates an EAR file. This script is executed within Eclipse using the "External Tools Configuration" wizard (play button with a suitcase icon). This script has values which seemed to be picked from a properties file or something similar to that.
One such example is the base directory:
<echo message="${display.version}"/>
<echo message="${basedir}"/>
I have searched the whole workspace but I can't find a single file that contains value for these items.
My question, how are these values being passed to this script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有看到更多的构建脚本,很难说
display.version
,但是basedir
经常被设置为
上的一个属性元素。http://ant.apache.org/manual/using.html
Hard to say about
display.version
without seeing more of the build script, butbasedir
is frequently set as an attribute on the<project>
element.http://ant.apache.org/manual/using.html