You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by lu...@apache.org on 2011/04/07 22:27:21 UTC

svn commit: r1089988 - /turbine/core/trunk/pom.xml

Author: ludwig
Date: Thu Apr  7 20:27:09 2011
New Revision: 1089988

URL: http://svn.apache.org/viewvc?rev=1089988&view=rev
Log:
pom.xml modified to include source-jar and javadoc-jar by default when the project is deployed.

Modified:
    turbine/core/trunk/pom.xml

Modified: turbine/core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/turbine/core/trunk/pom.xml?rev=1089988&r1=1089987&r2=1089988&view=diff
==============================================================================
--- turbine/core/trunk/pom.xml (original)
+++ turbine/core/trunk/pom.xml Thu Apr  7 20:27:09 2011
@@ -748,6 +748,32 @@
           </execution>
         </executions>
       </plugin>      
+      <plugin>
+      	<groupId>org.apache.maven.plugins</groupId>
+      	<artifactId>maven-source-plugin</artifactId>
+      	<version>2.1.2</version>
+      	<executions>
+      		<execution>
+      			<phase>prepare-package</phase>
+      			<goals>
+      				<goal>jar</goal>
+      			</goals>
+      		</execution>
+      	</executions>      	
+      </plugin>
+      <plugin>
+      	<groupId>org.apache.maven.plugins</groupId>
+      	<artifactId>maven-javadoc-plugin</artifactId>
+      	<version>2.7</version>
+      	<executions>
+      		<execution>
+      			<phase>prepare-package</phase>
+      			<goals>
+      				<goal>jar</goal>
+      			</goals>
+      		</execution>
+      	</executions>
+      </plugin>
     </plugins>
     
   </build>