4
votes
1answer
432 views

Maven 3 - How to add annotation processor dependency?

I need to run an annotation processor on my project's sources. The annotation processor should not become a transitive dependency of the project since it's only needed for annotation processing and ...
2
votes
0answers
184 views

Custom Annotation Processor creating duplicate classes in Maven

I have a custom annotation processor that generates classes using velocity templates. It works fine but I need to clean the project before building to avoid duplicate classes during compilation. I ...
0
votes
2answers
134 views

Maven, NetBeans Platform, Wrapper Modules and Annotation Processors on dependencies

I have a Maven NetBeans platform application. One of its modules is a wrapper to a java project (jar) that exposes some services to the Lookup. In the wrapped project I use the maven-processor-plugin ...
1
vote
1answer
55 views

Messages with level Diagnostic.Kind.NOTE (and others) on Annotation Processors

I have two Maven projects: The first defines an annotation, an annotation processor and a provider-configuration file to trigger the annotation processor through the ServiceLoader API. The other ...
2
votes
1answer
442 views

Annotation processor output in maven

I'm using JSR 269 as a way to analyze code during compilation and to fail it if needed. I'm having troubles with displaying output of my annotation processor in maven (Ant does show the output) I'm ...
3
votes
1answer
185 views

How to step-debug annotation processor during compile?

I have an annotation processor for an annotation of retention policy=SOURCE. I have not idea how to step-debug it. I have issued print statements, logger info when I run mvn install, compile or ...
1
vote
1answer
310 views

Integrating javassist byte code manipulation with maven compilation

I have a maven project which compiles with javac / aspectj compiler. I want to run on classes which were compiled a javassist program which manipulate the compiled classes and add stuff to them. I ...
2
votes
2answers
951 views

Not getting annotation processed (generated) sources compiled into apk, using maven

I try to use Maven and androidannotations to build my apk, but independently of any IDE (I'm actually using IntelliJ IDEA and not Eclipse, but I would like to have it entirely IDE-independent, so that ...
5
votes
1answer
2k views

Writing an annotation processor for maven-processor-plugin

I am interested in writing an annotation processor for the maven-processor-plugin. I am relatively new to Maven. Where in the project path should the processor Java source code go (e.g.: ...
4
votes
6answers
11k views

Setting the generated source directory for annotation processors in Maven

I'm trying to move a build which generates sources using an annotation processor to Maven. I've tried configuring the maven-compiler-plugin as follows: <plugins> <plugin> ...