Skip to content
Advertisement

Tag: aspectj-maven-plugin

OpenClover – Getting to work with AspectJ

I’m trying to use Openclover with a project that uses AspectJ and that instruments aspects into its code. The pom.xml has these dependencies with relation to AspectJ: And these plugins: I’m using two plugins to do this: clover-maven-plugin which is a code coverage tool and clover-aspectj-compiler, a wrapper for AspectJ compiler which allows code instrumentation using OpenClover. The errors I

Adding aspectJ language to define joinpoints

I’d like to define aspectj joinpoints not using annotations and string constants like this: but using aspecj language, like in this example: or Is there any good examples of how to add aspectj to the project to make maven compile this language properly and how to re-write @Before, @Around etc. annotations in aspecj language? Answer Here are some resources: the

Advertisement