Has anyone been able to use maven2 with the Aspectj plugin, and Cobertura plugin? I keep getting 0% coverage, when I should get something. Cobertura instrumentation is running before Aspectj weaving ...
What I want to do is fairly easy. Or so you would think. However, nothing is working properly.
Requirement:
Using maven, compile Java 1.6 project using AspectJ compiler.
Note:
Our code cannot ...
Does the maven-aspectj-plugin have an option to specify ajc's option -xmlConfigured?
If not, what's the common practice for compiling aspect codes with most recent version of ajc using maven?
I have to use Annotation Processing (apt) and AspectJ in the same Maven project.
Both work for themselves, but I need to create aspects based on code created by apt. So I ...
I have a project with Maven build and need to add some basic performance tracing to methods. I decided to use AspectJ for this. Main requirement is to weave tracing aspect ...
What I'm trying to accomplish is the following:
I have a server with the following structure.
bin
...
apis
services
...
etc...
So I want to define an API that contains an aspect to be used by services. Say:
I banged my head for two days to integrate aspectj with maven, But did not work.
I am writing a simple program with two advices (which works fine in eclipse, so ...
I have trouble weaving some aspects during compile time since I added the sourceDirectory tag with "src/main/java" as path. Before "." was set. Now the aspects are not weaved into the ...
I am trying to add aspectj to a maven project using java 6.0.
Using 1.4 version of aspectj-maven-plugin and 1.6.11 version of aspectj.
The classes are in an external dependency jar and ...
We have recently upgraded maven-aspectj-plugin and aspectj jars from 1.2/1.6.5 to 1.4/1.6.11
Ever since, my application doesn't find the aspected methods on the classes and throws a 'MethodNotFound' exception during runtime.
One thing ...