I am new to AspectJ. I have a Parent.jar which contains @Aspect
annotated class with aspect logging say MyAspect.java. This is working fine when i mention the package of Parent.jar in MyAspect
pointcut. Parent.jar contains a child.jar as a depenendency. I would to check the same aspectj logging on the packages of child.jar. This flow is not working..
My project is Spring Boot application. I dint add any specific dependency for AspectJ.
Any help is greatly appreciated.