使用 Eclipse,我如何知道正在使用哪个版本的 ANT?

发布于 2024-11-15 09:31:47 字数 65 浏览 1 评论 0原文

与原来的问题相同,使用 Eclipse,我如何知道它配置为使用哪个版本的 ANT?

Same as original question, using Eclipse, how can i tell what version of ANT it is configured to use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

再可℃爱ぅ一点好了 2024-11-22 09:31:47

在 Eclipse Helios 中:

  • 打开 Preferences 对话框(Window -> Preferences
  • 导航到 Ant -> Preferences Runtime 页面
  • 展开 Classpath 选项卡上的 Ant Home Entries 节点

这会显示用于 Ant 类路径的路径,同时还会显示 Eclipse 的 ANT_HOME。

因此,默认情况下,在 Helios 中您将看到类似以下内容:

<ECLIPSE_ROOT>/plugins/org.apache.ant_1.7.1.v20100518-1145\lib\ant.jar
etc

在同一页面上,您还可以更改 ANT_HOME 以使用 PC 上安装的不同版本的 Ant。

In Eclipse Helios:

  • Open the Preferences dialog (Window -> Preferences)
  • Navigate to the Ant -> Runtime page
  • Expand the Ant Home Entries node on the Classpath tab

This shows the path used for Ant classpath, which also reveals ANT_HOME for Eclipse.

So by default in Helios you will have something like:

<ECLIPSE_ROOT>/plugins/org.apache.ant_1.7.1.v20100518-1145\lib\ant.jar
etc

On this same page, you can also change ANT_HOME to use a different version of Ant you have installed on your PC.

ゃ人海孤独症 2024-11-22 09:31:47

创建一个构建文件并 echo $ant.version

在 Helios 上

  1. 创建一个空的 build.xml
  2. ,在空文件中
  3. ctrl+space 并选择默认构建文件模板,在名为“default”的目标中包含 2 个目标,添加 ; ${ant.version}
  4. 保存文件
  5. ,右键单击导航器中的 build.xml
  6. 选择 run as ant build

Create a build file and echo $ant.version

On Helios

  1. create an empty build.xml
  2. ctrl+space in the empty file and select the default build file template with 2 targets
  3. in the target called "default" add <echo>${ant.version}</echo>
  4. save the file
  5. right click on the build.xml in the navigator
  6. select run as ant build
生寂 2024-11-22 09:31:47

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文