You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by fe...@apache.org on 2011/10/07 17:29:08 UTC

svn commit: r1180075 - /james/jsieve/trunk/pom.xml

Author: felixk
Date: Fri Oct  7 15:29:08 2011
New Revision: 1180075

URL: http://svn.apache.org/viewvc?rev=1180075&view=rev
Log:
Add javadoc generation for 'normal' site generation

Modified:
    james/jsieve/trunk/pom.xml

Modified: james/jsieve/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/jsieve/trunk/pom.xml?rev=1180075&r1=1180074&r2=1180075&view=diff
==============================================================================
--- james/jsieve/trunk/pom.xml (original)
+++ james/jsieve/trunk/pom.xml Fri Oct  7 15:29:08 2011
@@ -332,7 +332,7 @@
                     <head>WARNING</head>
                   </tag>
                 </tags>
-                <source>1.5</source>
+                <source>${target.jdk}</source>
               </configuration>
               <reportSets>
                 <reportSet>
@@ -382,6 +382,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: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org