设置 Ant 使用与 JAVA_HOME 中指定的 JDK 不同的 JDK
因此,由于要运行许多项目,我不想更改 JAVA_HOME 变量(1.6),但我希望 ant 运行并使用 1.5 JDK。
我已经设法从 Eclipse IDE 执行此操作(因此可以完成),因此当从 Eclipse IDE 运行时,它将使用 1.5,因为我指定 JDK 1.5 作为项目的 JDK。
长话短说,我希望 Ant 在从 cmd 提示符运行时使用 JDK 1.5。
看起来很简单,但我很难找到实现的方法。
PS
我需要它在命令提示符下工作的原因是因为 ant 构建相当长,需要 3-4 分钟,而且我的 Eclipse IDE 在运行时会冻结。三分钟的等待是根本不可接受的:)
谢谢大家。
So for reason of running many projects, I don't want to change JAVA_HOME variable (1.6) but I would like ant to run and use 1.5 JDK.
I have manage to do this from Eclipse IDE (so it can be done), so when running from Eclipse IDE it will use 1.5 since I specified JDK 1.5 as project's JDK.
To make long story short I want Ant when run from cmd prompt to use JDK 1.5.
Seems pretty easy but I am having trouble finding out the way to do it.
P.S.
Reason I need this to work from command prompt is because ant build is quite long 3-4 mins and my Eclipse IDE gets frozen while it's running. Three minutes waits are simply not acceptable :)
Thanks all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写自己的脚本(称为 ant2 或类似脚本)来从所需的 JDK 执行 ant 并将其添加到 PATH 中。
You can write your own script, called ant2 or similar, to execute ant from the JDK that you want and add it into the PATH.