I'm stuck with the following problem: my plugin adda certain annotations to certain classes after they are compiled. I need AspectJ plugin to process them. So my plugin runs before AspectJ plugin. My plugin adds annotations but then AspectJ plugin rewrites classes (as far as I understand it compiles sources not processing classes). So I want somehow to force AspectJ plugin not to rewrite and process my annotations somehow or some other way for my annotations not to dissappear.
Thanks for any help!
UPDATE: Any plugin weaving binaries will be very helpful.