Author: felixk
Date: Fri Oct 7 15:07:05 2011
New Revision: 1180066
URL: http://svn.apache.org/viewvc?rev=1180066&view=rev
Log:
Add javadoc generation for 'normal' site generation
Modified:
james/protocols/trunk/pom.xml
Modified: james/protocols/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/protocols/trunk/pom.xml?rev=1180066&r1=1180065&r2=1180066&view=diff
==============================================================================
--- james/protocols/trunk/pom.xml (original)
+++ james/protocols/trunk/pom.xml Fri Oct 7 15:07:05 2011
@@ -275,7 +275,7 @@
<head>WARNING</head>
</tag>
</tags>
- <source>1.5</source>
+ <source>${target.jdk}</source>
</configuration>
<reportSets>
<reportSet>
@@ -321,6 +321,55 @@
</reportPlugins>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>site</phase>
+ <goals>
+ <goal>aggregate</goal>
+ <goal>test-aggregate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <minmemory>256m</minmemory>
+ <maxmemory>1g</maxmemory>
+ <linksource>true</linksource>
+ <tags>
+ <tag>
+ <name>note</name>
+ <placement>a</placement>
+ <head>NOTE</head>
+ </tag>
+ <tag>
+ <name>todo</name>
+ <placement>a</placement>
+ <head>TODO</head>
+ </tag>
+ <tag>
+ <name>warning</name>
+ <placement>a</placement>
+ <head>WARNING</head>
+ </tag>
+ </tags>
+ <source>${target.jdk}</source>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+
<xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
+
<xrefTestLocation>${project.reporting.outputDirectory}/xref-test</xrefTestLocation>
+ <!-- required by dashboard plugin and hudson -->
+ <xmlOutput>true</xmlOutput>
+ <effort>Max</effort>
+ <findbugsXmlOutput>true</findbugsXmlOutput>
+ <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
+ </configuration>
+ </plugin>
</plugins>
</build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]