mirror of https://github.com/apache/maven.git
Fix javadoc generation
This commit is contained in:
parent
2f91c7e9c6
commit
f2803ab5b7
|
@ -48,10 +48,8 @@ under the License.
|
|||
<id>plugin</id>
|
||||
<goals>
|
||||
<goal>velocity</goal>
|
||||
<goal>xdoc</goal>
|
||||
<goal>xsd</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
|
||||
<version>2.0.0</version>
|
||||
|
@ -67,13 +65,25 @@ under the License.
|
|||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>lifecycle</id>
|
||||
<id>plugin-doc</id>
|
||||
<goals>
|
||||
<goal>velocity</goal>
|
||||
<goal>xdoc</goal>
|
||||
<goal>xsd</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<version>2.0.0</version>
|
||||
<models>
|
||||
<model>src/main/mdo/plugin.mdo</model>
|
||||
</models>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>lifecycle</id>
|
||||
<goals>
|
||||
<goal>velocity</goal>
|
||||
</goals>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
|
||||
<version>1.0.0</version>
|
||||
|
@ -88,6 +98,20 @@ under the License.
|
|||
</params>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>lifecycle-doc</id>
|
||||
<goals>
|
||||
<goal>xdoc</goal>
|
||||
<goal>xsd</goal>
|
||||
</goals>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<version>1.0.0</version>
|
||||
<models>
|
||||
<model>src/main/mdo/lifecycle.mdo</model>
|
||||
</models>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
|
Loading…
Reference in New Issue