jira-importer
jira-importer
**[Petr Jiricka](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=pjiricka)** commented I also hit this issue. My scenario is that the my Maven project provides an annotation processor, and tests for this project use this processor. So when...
**[Petr Jiricka](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=pjiricka)** commented Sorry, what I meant is "when compiling tests, processors need to be run". See: http://maven.apache.org/guides/mini/guide-default-execution-ids.html
**[cdivilly](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cdivilly)** commented I used a variation of the above workaround, in my case I needed the outputs from the annotation processing to be packaged in the final jar not just...
**[Ramon Buckland](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rbuckland)** commented I needed to do something similar. I have a Unit Test which actually runs my Processor by calling the JavaCompiler. ``` @Test public void fullComprehensiveTest() { ......
**[Kohsuke Kawaguchi](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=kohsuke)** commented The original description of the issue says "when using -source 1.6 or higher" in the end, but that doesn't make sense. The question is if the build...
**[Jesse N. Glick](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jglick)** commented Regarding `-source 1.5`: it is unsafe to pass `-processorpath` in this case, since the target javac might in fact be from JDK 5 and not recognize...
**[Jesse N. Glick](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jglick)** commented Complete example project working around this problem; for the main sources the processorpath is set to the Maven classpath, so that processors in dependencies can still...
**[Kohsuke Kawaguchi](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=kohsuke)** commented My workaround is to define a separate Maven module (D) and defines a dummy do-nothing processor of the same fully-qualifled class name. This D module is then...
**[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** commented This issue has been auto closed because it has been inactive for a long period of time. If you think this issue still applies, retest your problem...
**[Ivan Rakov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=glukos)** commented I have just tried to compile my annotation processor with the latest maven version (3.3.3), results are the same: ``` [INFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : [INFO]...