comment test for help generation with annotations due to chicken and eggs trouble

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/branches/MPLUGIN-189@1333851 13f79535-47bb-0310-9956-ffa450edef68
master
Olivier Lamy 2012-05-04 10:05:28 +00:00
parent 28a6f54643
commit 32975142d5
3 changed files with 12 additions and 1 deletions

View File

@ -1,2 +1,5 @@
invoker.goals.1 = install invoker.goals.1 = install
invoker.goals.2 = org.apache.maven.its.basic-java-annotations:maven-it-basic-java-annotations:1.0:it0014 invoker.goals.2 = org.apache.maven.its.basic-java-annotations:maven-it-basic-java-annotations:1.0:it0014
#FIXME disabled need to find a solution for the chicken and eggs issue.
#help sources are generated @generated-sources but need descriptor which need compile phase first for classes scanning
#invoker.goals.3 = org.apache.maven.its.basic-java-annotations:maven-it-basic-java-annotations:1.0::help

View File

@ -62,11 +62,18 @@ under the License.
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>mojo-descriptor</id>
<phase>process-classes</phase>
<goals> <goals>
<goal>descriptor</goal> <goal>descriptor</goal>
</goals> </goals>
<id>mojo-descriptor</id> </execution>
<execution>
<id>help-goal</id>
<phase>process-classes</phase> <phase>process-classes</phase>
<goals>
<goal>helpmojo</goal>
</goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>

View File

@ -1,2 +1,3 @@
invoker.goals.1 = install invoker.goals.1 = install
invoker.goals.2 = org.apache.maven.its.it0013:maven-it-it0013:1.0:it0013 invoker.goals.2 = org.apache.maven.its.it0013:maven-it-it0013:1.0:it0013