Hi

I am using AspectJ to weave in an aspect with the @aspect annotation. This works fine, however there is also another @aspect file in the codebase that I do not want AspectJ to weave (This one's for Spring AOP to deal with).

If I use load time weaving this isn't a problem because I can tell the load time weaver where to look for my aspect and to ignore the other one. However I cannot seem to find the equivalent configuration method for compile time weaving (I am using the iajc ant task).

Can anybody help please?