You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/02/14 22:39:21 UTC

svn commit: r377842 - /directory/trunks/apacheds/pom.xml

Author: ersiner
Date: Tue Feb 14 13:39:21 2006
New Revision: 377842

URL: http://svn.apache.org/viewcvs?rev=377842&view=rev
Log:
Simplified ant javadoc task usage.

Modified:
    directory/trunks/apacheds/pom.xml

Modified: directory/trunks/apacheds/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/pom.xml?rev=377842&r1=377841&r2=377842&view=diff
==============================================================================
--- directory/trunks/apacheds/pom.xml (original)
+++ directory/trunks/apacheds/pom.xml Tue Feb 14 13:39:21 2006
@@ -250,13 +250,11 @@
             <phase>site</phase>
             <configuration>
               <tasks>
-                <javadoc destdir="target/site/docs/api" author="true" use="true" windowtitle="ApacheDS">
+                <javadoc destdir="target/site/docs/api" use="true" windowtitle="ApacheDS" 
+                  packagenames="org.apache.directory.server.*">
                   <sourcepath>
-                    <dirset dir=".">
-                      <include name="*/src/main/java"/>
-                    </dirset>
+                    <dirset dir="." includes="*/src/main/java"/>
                   </sourcepath>
-                  <package name="org.apache.directory.server.*"/>
                 </javadoc>
               </tasks>
             </configuration>