How to invoke the JDK 1.6 annotation processing engine?
Hi everyone, I want to use the new JDK 1.6 annotation processing API directly from ant. It seems the present APT task can't do it. The Javac task also does not support it. Currently I plan to invoke the java compiler as an external process: "javac -cp "my annotations and processors" -processor
*.java to *.class?
? Best regards, Todor Boev