You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2018/09/30 16:57:04 UTC

[ambari-infra] branch branch-feature-jenkins-test updated: Test commit for use fabric docker plugin to push image

This is an automated email from the ASF dual-hosted git repository.

oleewere pushed a commit to branch branch-feature-jenkins-test
in repository https://gitbox.apache.org/repos/asf/ambari-infra.git


The following commit(s) were added to refs/heads/branch-feature-jenkins-test by this push:
     new 66390df  Test commit for use fabric docker plugin to push image
66390df is described below

commit 66390df92d51dd9461d769892888d6b84101d26a
Author: Oliver Szabo <ol...@gmail.com>
AuthorDate: Sun Sep 30 18:56:43 2018 +0200

    Test commit for use fabric docker plugin to push image
---
 ambari-infra-assembly/pom.xml | 15 +++++++++++++++
 pom.xml                       | 10 +++++-----
 2 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/ambari-infra-assembly/pom.xml b/ambari-infra-assembly/pom.xml
index 4470cae..785b006 100644
--- a/ambari-infra-assembly/pom.xml
+++ b/ambari-infra-assembly/pom.xml
@@ -402,6 +402,21 @@
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <groupId>io.fabric8</groupId>
+            <artifactId>docker-maven-plugin</artifactId>
+            <version>0.27.1</version>
+            <configuration>
+              <images>
+                <image>
+                  <name>apache/ambari-infra-solr:latest</name>
+                  <build>
+                    <from>openjdk:10-jre</from>
+                  </build>
+                </image>
+              </images>
+            </configuration>
+          </plugin>
         </plugins>
       </build>
     </profile>
diff --git a/pom.xml b/pom.xml
index f4365d6..a38a3e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -163,17 +163,17 @@
           <artifactId>maven-failsafe-plugin</artifactId>
           <version>2.20</version>
         </plugin>
+        <plugin>
+          <groupId>io.fabric8</groupId>
+          <artifactId>docker-maven-plugin</artifactId>
+          <version>0.27.1</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
       <plugin>
         <inherited>false</inherited>
         <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <descriptors>
-            <descriptor>../ambari-project/src/main/assemblies/empty.xml</descriptor>
-          </descriptors>
-        </configuration>
         <executions>
           <execution>
             <id>build-tarball</id>