使用 Eclipse,我如何知道正在使用哪个版本的 ANT?
与原来的问题相同,使用 Eclipse,我如何知道它配置为使用哪个版本的 ANT?
Same as original question, using Eclipse, how can i tell what version of ANT it is configured to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Eclipse Helios 中:
Window -> Preferences
)Ant -> Preferences Runtime
页面Classpat
h 选项卡上的Ant Home Entries
节点这会显示用于 Ant 类路径的路径,同时还会显示 Eclipse 的 ANT_HOME。
因此,默认情况下,在 Helios 中您将看到类似以下内容:
在同一页面上,您还可以更改 ANT_HOME 以使用 PC 上安装的不同版本的 Ant。
In Eclipse Helios:
Window -> Preferences
)Ant -> Runtime
pageAnt Home Entries
node on theClasspat
h tabThis shows the path used for Ant classpath, which also reveals ANT_HOME for Eclipse.
So by default in Helios you will have something like:
On this same page, you can also change ANT_HOME to use a different version of Ant you have installed on your PC.
创建一个构建文件并 echo $ant.version
在 Helios 上
Create a build file and echo $ant.version
On Helios
<echo>${ant.version}</echo>
在 Eclipse Helios(版本 3.6.2)中,可以通过以下方式确定各种插件模块(例如 ANT)的版本。
选择帮助-> “关于 Eclipse SDK”菜单选项
单击“安装详细信息”按钮
单击“插件”选项卡
在“插件名称”列中可以找到 ANT,版本在下一列中。
“插件名称”列中可能会多次引用 ANT,包括
Ant Build Tool Core
Ant 启动支持
蚂蚁用户界面
Apache Ant
我相信“Apache Ant”是最相关的条目,其他条目则涉及 ant 如何与 eclipse 集成。
In Eclipse Helios (version 3.6.2) the version of the various plug-in modules such as ANT can be determined in the following manner.
Select the Help -> "About Eclipse SDK" menu option
Click on the "Installation Details" button
Click on the "Plug-ins" Tab
The "Plug-in Name" column is where ANT can be found the version is in the next column.
There will probably be multiple references to ANT in the "Plug-in Name" column including
Ant Build Tool Core
Ant Launching support
Ant UI
Apache Ant
I believe the "Apache Ant" is the most relevant entry and the others deal with how ant integrates with eclipse.