You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2012/06/30 02:58:42 UTC

svn commit: r1355611 - /incubator/bigtop/branches/branch-0.4/pom.xml

Author: rvs
Date: Sat Jun 30 00:58:42 2012
New Revision: 1355611

URL: http://svn.apache.org/viewvc?rev=1355611&view=rev
Log:
BIGTOP-653. improve top level pom file to be able to produce

Modified:
    incubator/bigtop/branches/branch-0.4/pom.xml

Modified: incubator/bigtop/branches/branch-0.4/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bigtop/branches/branch-0.4/pom.xml?rev=1355611&r1=1355610&r2=1355611&view=diff
==============================================================================
--- incubator/bigtop/branches/branch-0.4/pom.xml (original)
+++ incubator/bigtop/branches/branch-0.4/pom.xml Sat Jun 30 00:58:42 2012
@@ -93,6 +93,21 @@
           <artifactId>maven-site-plugin</artifactId>
           <version>2.1.1</version>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.3</version>
+          <configuration>
+            <descriptorRefs>
+              <descriptorRef>project</descriptorRef>
+            </descriptorRefs>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.4</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -143,6 +158,18 @@
       <build>
         <plugins>
           <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <groupId>org.apache.rat</groupId>
             <artifactId>apache-rat-plugin</artifactId>
             <executions>
@@ -154,6 +181,19 @@
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
       </build>
     </profile>