Author: felixk
Date: Wed Oct 5 10:41:53 2011
New Revision: 1179149
URL: http://svn.apache.org/viewvc?rev=1179149&view=rev
Log:
Add javadoc generation for 'normal' site generation to have find it in the
mailbox site (http://james.apache.org/mailbox/index.html /
http://james.apache.org/mailbox/apidocs/index.html)
Modified:
james/mailbox/trunk/pom.xml
Modified: james/mailbox/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/mailbox/trunk/pom.xml?rev=1179149&r1=1179148&r2=1179149&view=diff
==============================================================================
--- james/mailbox/trunk/pom.xml (original)
+++ james/mailbox/trunk/pom.xml Wed Oct 5 10:41:53 2011
@@ -356,7 +356,7 @@
<head>WARNING</head>
</tag>
</tags>
- <source>1.5</source>
+ <source>${target.jdk}</source>
</configuration>
<reportSets>
<reportSet>
@@ -402,6 +402,42 @@
</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>
</plugins>
</build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]