For many years, we ran the maven-processor-plugin as a separate target (using proc:none in the maven-compiler-plugin). Finally, we are upgrading from maven 3.0.5 to the latest version 3.3.3, and I see that the maven-processor plugin basically looks dead. As far as I can tell, it has not been ported from Google code.
We use annotation processing primarily to create dagger classes. I canβt remember the reasons, but at that time (in dagger-1) we had the impression that it was better to do this in the generate-sources and generate-test-sources phases, and not during compile and test-compile , so for starters we used the maven-processor-plugin plugin. Please note that we want all this to play well in eclipse / m2e.
Is there a new, better way to start annotation processing from maven that works great for eclipse?
java maven maven-3 dagger
Ben
source share