Hello,
I am trying for maven to process my annotation processor.
Here is what I tried:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<processor>com.jeanbaptistemartin.util.TestAnnotationsProcessor</processor>
<processorpath>${basedir}/src/main/java</processorpath>
</compilerArguments>
</configuration>
</plugin>
Here is what I get:
Compilation failure
error: Annotation processor
'com.jeanbaptistemartin.util.TestAnnotationsProcessor' not found
Can anyone please help?
Thanks in advance,
Julien.