You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jo...@apache.org on 2016/10/16 13:29:53 UTC

[03/30] ambari git commit: AMBARI-18596. rpm command broken on utility project (alejandro)

AMBARI-18596. rpm command broken on utility project (alejandro)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6951da4d
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6951da4d
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6951da4d

Branch: refs/heads/branch-feature-AMBARI-18456
Commit: 6951da4d531f9f12f0a0e1e8668ab8f7ba0557d2
Parents: 9b9a2c0
Author: Alejandro Fernandez <af...@hortonworks.com>
Authored: Thu Oct 13 17:17:32 2016 -0700
Committer: Alejandro Fernandez <af...@hortonworks.com>
Committed: Fri Oct 14 13:18:10 2016 -0700

----------------------------------------------------------------------
 utility/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/6951da4d/utility/pom.xml
----------------------------------------------------------------------
diff --git a/utility/pom.xml b/utility/pom.xml
index 9f3fe32..2febb83 100644
--- a/utility/pom.xml
+++ b/utility/pom.xml
@@ -44,6 +44,27 @@
           <useIncrementalCompilation>false</useIncrementalCompilation>
         </configuration>
       </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>rpm</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <copyright>2012, Apache Software Foundation</copyright>
+          <group>Development</group>
+          <disabled>true</disabled>
+          <description>Maven Recipe: RPM Package.</description>
+          <mappings/>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>