[hibernate-commits] Hibernate SVN: r17898 - core/trunk/parent.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Nov 3 00:13:24 EST 2009


Author: steve.ebersole at jboss.com
Date: 2009-11-03 00:13:23 -0500 (Tue, 03 Nov 2009)
New Revision: 17898

Modified:
   core/trunk/parent/pom.xml
Log:
Generate and install/deploy source jars

Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml	2009-11-03 05:12:40 UTC (rev 17897)
+++ core/trunk/parent/pom.xml	2009-11-03 05:13:23 UTC (rev 17898)
@@ -174,6 +174,20 @@
                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
                 </configuration>
             </plugin>
+            <!-- Attach source jars -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
         <pluginManagement>
             <plugins>
@@ -281,6 +295,11 @@
                     <artifactId>maven-compiler-plugin</artifactId>
                     <version>2.0.2</version>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-source-plugin</artifactId>
+                    <version>2.1.1</version>
+                </plugin>
             </plugins>
         </pluginManagement>
 



More information about the hibernate-commits mailing list