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/09 01:33:16 UTC

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

Author: ersiner
Date: Wed Feb  8 16:33:15 2006
New Revision: 376129

URL: http://svn.apache.org/viewcvs?rev=376129&view=rev
Log:
Added javadoc ant task.

Modified:
    directory/trunks/apacheds/pom.xml

Modified: directory/trunks/apacheds/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/pom.xml?rev=376129&r1=376128&r2=376129&view=diff
==============================================================================
--- directory/trunks/apacheds/pom.xml (original)
+++ directory/trunks/apacheds/pom.xml Wed Feb  8 16:33:15 2006
@@ -249,12 +249,17 @@
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
-            <phase>install</phase>
+            <phase>site</phase>
             <configuration>
               <tasks>
-                <exec executable="mvn">
-                  <arg line="site --non-recursive"/>
-                </exec>
+                <javadoc destdir="target/site/docs/api">
+                  <sourcepath>
+                    <dirset dir=".">
+                      <include name="*/src/main/java"/>
+                    </dirset>
+                  </sourcepath>
+                  <package name="org.apache.directory.server.*"/>
+                </javadoc>
               </tasks>
             </configuration>
             <goals>