Is it possible to easily add annotation processors into the maven-compiler-plugin?
Looking at the docs I see I can add a <compilerArgument> element and pass in the -processorpath argument, but how do I generate the path to a dependency? Ideally, i just want to add a <dependency> block into the plugin with a scope of "processor" and have it magically be applied, although I guess I'll just have to look at using some form of macro expansion inside my <compilerArgument>? Any one have any ideas? -- "It is easier to optimize correct code than to correct optimized code." -- Bill Harlan
