summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMahadev Konar <mahadev@apache.org>2012-11-07 08:13:12 +0000
committerMahadev Konar <mahadev@apache.org>2012-11-07 08:13:12 +0000
commita12bb10131ca66e48e524500092695ecdcc86fea (patch)
tree3af05ce6701f56c6fedaa0c4df25ba2aaefa30a0 /pom.xml
parentf305fb30e52567b2002e736fb27ee6ed81e2575e (diff)
AMBARI-967. Enhance predicate comparison. (Tom Beerbower via mahadev)
git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/branches/AMBARI-666@1406489 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index cfb5df0b7b..9cf849f374 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,10 +55,23 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rpm-maven-plugin</artifactId>
+ <version>2.0.1</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
@@ -75,6 +88,26 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rpm-maven-plugin</artifactId>
+ <version>2.0.1</version>
+ <executions>
+ <execution>
+ <!-- unbinds rpm creation from maven lifecycle -->
+ <phase>none</phase>
+ <goals>
+ <goal>attached-rpm</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <copyright>2012, Apache Software Foundation</copyright>
+ <group>Development</group>
+ <description>Maven Recipe: RPM Package.</description>
+ <mappings/>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>