added aggregated javadoc and jxr with menu entry

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1164700 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2011-09-02 20:41:43 +00:00
parent 9d5fe284c6
commit e05c32d462
2 changed files with 56 additions and 0 deletions

53
pom.xml
View File

@ -257,4 +257,57 @@
</pluginManagement>
</build>
<profiles>
<profile>
<id>reporting</id>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<linksource>true</linksource>
<links combine.children="append">
<link>http://sonatype.github.com/sonatype-aether/apidocs/</link>
</links>
</configuration>
<reportSets>
<reportSet>
<id>non-aggregate</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
<reportSet>
<id>aggregate</id>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
<reportSets>
<reportSet>
<id>non-aggregate</id>
<reports>
<report>jxr</report>
</reports>
</reportSet>
<reportSet>
<id>aggregate</id>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>

View File

@ -27,6 +27,9 @@ under the License.
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="JavaDocs" href="apidocs/index.html"/>
<item name="Source Xref" href="xref/index.html"/>
<!--item name="FAQ" href="faq.html"/-->
</menu>
<menu ref="modules" />