I'm using the latest version of IntelliJ IDEA (13.1.4) and I'm developing my own custom annotation.
I currently have two modules on my project
- MyOwnCustomAnnotationProcessor (here I have the actual processor)
- MyOwnCustomAnnotationProcessorTest (this I basically have a couple classes annotated to see if it's all generating fine)
I was working in Eclipse but I'm trying to migrate ot IntelliJ because I can't stand Eclipse. I managed to make it kinda-of work in Eclipse by having an Ant build generating the .jar file of the main project and the Test classes would use this .jar.
But I can't make it work on IntelliJ.
In Settings -> Compiler -> Annotation Processor
I have a new profile, the test project is inside this profile, the profile is like:
I've also tried changing the Processor Path
to the output folder (where there're classes n META-INF) but no luck. The generated
folder is being created by the IDE, but it's not finding any processors.
Any tip on how to proceed here?