如何将构建步骤添加到 Eclipse“运行配置”?
有没有办法将构建步骤添加到 Eclipse 中的“运行配置”?
我的项目使用一个应在启动 Web 应用程序之前构建的小程序。因此,我想在实际运行应用程序之前将 Eclipse 配置为执行这一步骤。
我知道我可以使用 Ant/Maven 来做到这一点,但我想知道是否有办法在 Eclipse 中做到这一点。
谢谢
Is there a way to add build steps to a "run configuration" in Eclipse?
My project uses an applet that should be built before starting the web application. So I'd like to configure Eclipse to do this single step before actually running the application.
I know I can do it with Ant/Maven, but I wonder if there's a way to do it in Eclipse.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于经典的启动(Java 或 Java Applet)配置,不需要。不直接。
对于外部 Tols 启动器,也不是直接的。
这个想法是:
为此,您可以定义两个项目:
然后,您的启动配置将与第二个项目(包括第一个项目)一起运行。
如果选择“自动构建”选项,则第二个项目在未先编译的情况下不应运行。
For a classic launching (Java or Java Applet) configuration, no. Not directly.
For an External Tols launcher, not directly either.
The idea would be:
For that, you could define two projects:
Your launching configuration would then run with the second project (which includes the first)
If the option "Build automatically" is selected, the second project shouldn't run without being compiled first.