How can i Run Annotation Processor without compiling sources using javac (Java 8 can't use Apt)?
Is there any parameter for javac that could run only annotation processing without compiling all files?
What i want to do by javac:
Just find annotated elements and process them using defined annotation processor using
-processor
flagdo not compile any source that doesn't have any annotation
Because i want do this on Java 8 it's impossible to use Apt for this task? Or maybe it is?