Author: rvs
Date: Tue Jun 26 22:28:57 2012
New Revision: 1354277
URL: http://svn.apache.org/viewvc?rev=1354277&view=rev
Log:
BIGTOP-653. improve top level pom file to be able to produce
Modified:
incubator/bigtop/trunk/pom.xml
Modified: incubator/bigtop/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/pom.xml?rev=1354277&r1=1354276&r2=1354277&view=diff
==============================================================================
--- incubator/bigtop/trunk/pom.xml (original)
+++ incubator/bigtop/trunk/pom.xml Tue Jun 26 22:28:57 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>