currently it takes a whole other plugin to add the output directory to
compilation sources:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/apt</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugin>
but it should be trivial to do this from within the processor plugin
Original issue reported on code.google.com by igor.vay...@gmail.com on 8 Nov 2009 at 7:05
Original issue reported on code.google.com by
igor.vay...@gmail.com
on 8 Nov 2009 at 7:05