You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2010/05/24 12:59:30 UTC

svn commit: r947597 - in /webservices/commons/trunk/modules/axiom: pom.xml src/docbkx/devguide.xml

Author: veithen
Date: Mon May 24 10:59:30 2010
New Revision: 947597

URL: http://svn.apache.org/viewvc?rev=947597&view=rev
Log:
Excluded some unit test related packages from the Javadoc.

Modified:
    webservices/commons/trunk/modules/axiom/pom.xml
    webservices/commons/trunk/modules/axiom/src/docbkx/devguide.xml

Modified: webservices/commons/trunk/modules/axiom/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/pom.xml?rev=947597&r1=947596&r2=947597&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/pom.xml Mon May 24 10:59:30 2010
@@ -682,6 +682,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.7</version>
                 <configuration>
                     <links>
                         <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
@@ -689,12 +690,12 @@
                         <link>http://java.sun.com/webservices/docs/1.5/api/</link>
                         <link>http://jaxen.codehaus.org/apidocs/</link>
                     </links>
-                    <aggregate>true</aggregate>
+                    <excludePackageNames>org.apache.axiom.test:org.apache.axiom.testutils</excludePackageNames>
                 </configuration>
                 <reportSets>
                   <reportSet>
                     <reports>
-                      <report>javadoc</report>
+                      <report>aggregate</report>
                     </reports>
                   </reportSet>
                 </reportSets>

Modified: webservices/commons/trunk/modules/axiom/src/docbkx/devguide.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/docbkx/devguide.xml?rev=947597&r1=947596&r2=947597&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/src/docbkx/devguide.xml (original)
+++ webservices/commons/trunk/modules/axiom/src/docbkx/devguide.xml Mon May 24 10:59:30 2010
@@ -199,6 +199,12 @@ javax.xml.stream.XMLOutputFactory=com.be
                         </mediaobject>
                     </figure>
                 </listitem>
+                <listitem>
+                    <para>
+                        Check that the generated Javadoc contains the appropriate set of packages.
+                        In particular, unit test related classes should be excluded.
+                    </para>
+                </listitem>
             </itemizedlist>
         </section>
     </chapter>