You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/04/30 12:03:50 UTC

svn commit: r533655 - /activemq/trunk/activemq-core/pom.xml

Author: jstrachan
Date: Mon Apr 30 03:03:47 2007
New Revision: 533655

URL: http://svn.apache.org/viewvc?view=rev&rev=533655
Log:
Updated the javadoc generation to make a nicer report with groupings

Modified:
    activemq/trunk/activemq-core/pom.xml

Modified: activemq/trunk/activemq-core/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/pom.xml?view=diff&rev=533655&r1=533654&r2=533655
==============================================================================
--- activemq/trunk/activemq-core/pom.xml (original)
+++ activemq/trunk/activemq-core/pom.xml Mon Apr 30 03:03:47 2007
@@ -169,14 +169,22 @@
     </dependency>
   </dependencies>
 
-  <build>
-
+	<reporting>
     <plugins>
-	
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+            <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
+            <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+            <link>http://junit.sourceforge.net/javadoc/</link>
+          </links>
+          <stylesheetfile>${basedir}/../etc/css/stylesheet.css</stylesheetfile>
+          <linksource>true</linksource>
+          <maxmemory>256m</maxmemory>
+          <source>1.5</source>
           <groups>
             <group>
               <title>JMS Client</title>
@@ -229,7 +237,11 @@
           </groups>
         </configuration>
       </plugin>
-
+		</plugins>
+	</reporting>
+	
+  <build>
+    <plugins>
       <!-- Configure which tests are included/excuded -->
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>