You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sanselan-commits@incubator.apache.org by cm...@apache.org on 2008/07/22 22:47:57 UTC

svn commit: r678937 - /incubator/sanselan/trunk/pom.xml

Author: cmchen
Date: Tue Jul 22 15:47:57 2008
New Revision: 678937

URL: http://svn.apache.org/viewvc?rev=678937&view=rev
Log:
I figured out how to include the javadocs in the binary builds ... after I made the new release.

Modified:
    incubator/sanselan/trunk/pom.xml

Modified: incubator/sanselan/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sanselan/trunk/pom.xml?rev=678937&r1=678936&r2=678937&view=diff
==============================================================================
--- incubator/sanselan/trunk/pom.xml (original)
+++ incubator/sanselan/trunk/pom.xml Tue Jul 22 15:47:57 2008
@@ -166,6 +166,21 @@
               </execution>
             </executions>
           </plugin>
+
+	      <plugin>
+	        <groupId>org.apache.maven.plugins</groupId>
+	        <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>generate-javadocs</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+	      </plugin>
+
           <!-- The release artifacts -->
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
@@ -177,10 +192,6 @@
 	          	</descriptors>
 
               <descriptorRefs>
-<!--
-                <descriptorRef>bin</descriptorRef>
-                <descriptorRef>project</descriptorRef>
--->
               </descriptorRefs>
             </configuration>
             <executions>