MPLUGIN-33: Unrecognized tag when trying to fork lifecycle from an ant-based mojo

o generated the metadata xsd and documentation
o updated modello to 1.0-alpha-20
o update the documentation 

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@684087 13f79535-47bb-0310-9956-ffa450edef68
master
Vincent Siveton 2008-08-08 20:50:34 +00:00
parent e4d2f9c283
commit e798f33a69
2 changed files with 31 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
~ Licensed to the Apache Software Foundation (ASF) under one ~ Licensed to the Apache Software Foundation (ASF) under one
@ -37,7 +37,7 @@
<plugin> <plugin>
<groupId>org.codehaus.modello</groupId> <groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId> <artifactId>modello-maven-plugin</artifactId>
<version>1.0-alpha-18</version> <version>1.0-alpha-20</version>
<configuration> <configuration>
<models> <models>
<model>src/main/mdo/plugin-metadata.mdo</model> <model>src/main/mdo/plugin-metadata.mdo</model>
@ -46,10 +46,28 @@
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>site-docs</id>
<phase>pre-site</phase>
<goals> <goals>
<goal>xsd</goal>
</goals>
</execution>
<execution>
<id>xsd</id>
<phase>pre-site</phase>
<goals>
<goal>xsd</goal>
</goals>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
</configuration>
</execution>
<execution>
<id>standard</id>
<goals>
<goal>java</goal>
<goal>xpp3-reader</goal> <goal>xpp3-reader</goal>
<goal>xpp3-writer</goal> <goal>xpp3-writer</goal>
<goal>java</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>

View File

@ -29,3 +29,13 @@
Introduction Introduction
The Maven Plugin Tool Model is model to extract descriptors information from plugins. The Maven Plugin Tool Model is model to extract descriptors information from plugins.
The following are generated from this model:
* {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser
* A {{{plugin-metadata.html}Descriptor Reference}}
* An {{{./plugin-metadata-1.0.0.xsd}XSD}}.
[]