I've installed m2e-apt in Eclipse Mars, and am running into the following error:
Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation failure
error: Bad service configuration file, or exception thrown while constructing Processor object:
javax.annotation.processing.Processor: Provider org.eclipse.sisu.space.SisuIndexAPT6 not found
The error seems to occur in several different projects, regardless whether i'm directly using annotations, though perhaps dependencies are annotated, unless I explicitly disable it using
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
using
<m2e.apt.activation>maven_plugin</m2e.apt.activation> or
<m2e.apt.activation>disabled</m2e.apt.activation>
makes no difference. Any ideas how to fix it?
thanks, Mitchell