如果另一个项目中的文件发生更改(任何更改),如何强制 Eclipse 重建?
我有一个 Eclipse (Galileo) 项目(称为 ProguardBuilder),它在其他项目中的一组类文件上运行 Proguard 并生成一个 jar 文件。
我希望在其他项目中的任何类文件发生更改时重新构建 ProguardBuilder 项目。 AutoBuild 不会这样做;据推测,它足够聪明,可以识别并忽略任何不影响外部可见内容的更改。
我的问题是,我不关心更改是否可见,因为每当类文件依赖于更改时,我都需要完全重建 ProguardBuilder。
我如何告诉 Eclipse 进行这种重建?
I've got an Eclipse (Galileo) project (called ProguardBuilder) that runs Proguard over a set of class files in other projects and produces a jar file.
I'd like to have the ProguardBuilder project get rebuilt any time any class file in the other projects changes. AutoBuild doesn't do that; presumably it's smart enough to recognize and ignore any changes that don't affect anything externally visible.
My problem is that I don't care whether or not the change is visible, since I need to completely rebuild ProguardBuilder any time the class files it depends on change at all.
How do I tell Eclipse to do this sort of rebuild?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须使用外部构建器。检查文档,因为我从来没有这样做过。但开始的地方是项目属性对话框的“Builders”部分。
You might have to use an external builder. Check the documentation, because I've never done this. But the place to start is the "Builders" section of the project properties dialogue.