I am using the latest version of IntelliJ IDEA (13.1.4), and I am developing my own annotation.
I currently have two modules in my project
- MyOwnCustomAnnotationProcessor (here I have the actual processor)
- MyOwnCustomAnnotationProcessorTest (I basically have a couple of classes annotated to see if this all generates)
I worked in Eclipse, but I'm trying to switch from IntelliJ because I cannot stand Eclipse. I managed to do this in Eclipse by creating an Ant construct that creates the .jar file of the main project, and the Test classes will use this .jar.
But I can not get it to work on IntelliJ.
In Settings -> Compiler -> Annotation Processor I have a new profile, a test project inside this profile, the profile is similar:

I also tried changing the Processor Path to the output folder (where there are n META-INF classes), but no luck. The generated folder is created by the IDE, but does not find any processors.
How can you continue here?
source share