velo / maven-annotation-plugin

Automatically exported from code.google.com/p/maven-annotation-plugin
0 stars 0 forks source link

make it easier to have the output directory added to the compilation sources #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago

Original comment by igor.vay...@gmail.com on 8 Nov 2009 at 7:29