You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shale.apache.org by ws...@apache.org on 2006/08/19 08:27:34 UTC

svn commit: r432807 - /shale/framework/trunk/pom.xml

Author: wsmoak
Date: Fri Aug 18 23:27:30 2006
New Revision: 432807

URL: http://svn.apache.org/viewvc?rev=432807&view=rev
Log:
Added pom configuration for -sources and -javadoc jars.
SHALE-179

Modified:
    shale/framework/trunk/pom.xml

Modified: shale/framework/trunk/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/pom.xml?rev=432807&r1=432806&r2=432807&view=diff
==============================================================================
--- shale/framework/trunk/pom.xml (original)
+++ shale/framework/trunk/pom.xml Fri Aug 18 23:27:30 2006
@@ -258,6 +258,30 @@
                   </execution>
                </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-javadoc</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-source</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
 
         <defaultGoal>install</defaultGoal>