How do I force Eclipse to rebuild if files in another project change (any change)?

Posted by James Moore on Stack Overflow See other posts from Stack Overflow or by James Moore
Published on 2010-06-13T19:33:11Z Indexed on 2010/06/13 19:42 UTC
Read the original article Hit count: 407

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about eclipse

Related posts about dependencies