I'm on a team developing a multi-component Java app. I've set up a SE project for my stuff, and another for the rest of the stuff.
When I first turned on Live Errors, I was getting "no symbol" errors for "other stuff" symbols, so I added the jarfile for the other stuff to my project's SE classpath. Now, when I run my ant-based build, I get errors. Those errors go away if I remove the "other stuff" jarfile from my SE classpath.
Obviously, having otherStuff.jar in the classpath when calling ant is problematic - I think it's because the ant scripts are trying to build classes that end up in otherStuff.jar, and that confuses the compiler.
Is there any way to tell antmake to *not* use the SE classpath? My ant scripts take care of referencing everything necessary, so in my case, the SE classpath is *only* for Live Errors, so this would solve my problem.
If there isn't a way, my choices are to either turn off Live Errors or to replace the Build and Rebuild commands with my own ant calls that don't go through antmake. I'd prefer to not do either.