I'm pretty new to AOP in general, but I have the following problem.
I have 2 projects. One containing an aspect that does some performance testing and another project which has a dependency to the previous one.
What I'd like to achieve is weave the aspect from project 1, into another aspect of project 2. As such doing some performance testing on the aspect of project 2.
I found out it's not possible with Spring-AOP, but it should be possible with AspectJ's weaving. However, I did not figure out how.
Im pretty sure I need to make use of the aspectj-maven-plugin, using configuration as listed in the AspectJ documentation. But nothing seems to be picked up? Any pointers on how to write an extra pointcut for an external aspect?