You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mh...@apache.org on 2018/10/07 12:49:40 UTC

[2/6] asterixdb git commit: [NO ISSUE] asterix-docker profilization

[NO ISSUE] asterix-docker profilization

Change-Id: I71eb349de45b4d424e171d82e1ae598235b04b48
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2945
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Michael Blow <mb...@apache.org>


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

Branch: refs/heads/master
Commit: a07db5d399013a139db5d63c225e5c1601f507e0
Parents: 0405a91
Author: Ian Maxon <im...@apache.org>
Authored: Thu Aug 30 19:10:51 2018 -0700
Committer: Ian Maxon <im...@apache.org>
Committed: Fri Aug 31 12:22:17 2018 -0700

----------------------------------------------------------------------
 asterixdb/asterix-docker/pom.xml | 45 +++++++++++++++++++----------------
 asterixdb/pom.xml                |  1 +
 2 files changed, 26 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a07db5d3/asterixdb/asterix-docker/pom.xml
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-docker/pom.xml b/asterixdb/asterix-docker/pom.xml
index fd4a61f..0da3620 100644
--- a/asterixdb/asterix-docker/pom.xml
+++ b/asterixdb/asterix-docker/pom.xml
@@ -39,25 +39,30 @@
     </license>
   </licenses>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>com.spotify</groupId>
-        <artifactId>docker-maven-plugin</artifactId>
-        <version>0.2.11</version>
-        <configuration>
-          <imageName>asterixdb/demo</imageName>
-          <dockerDirectory>docker</dockerDirectory>
-          <resources>
-            <resource>
-              <targetPath>/</targetPath>
-              <directory>../asterix-server/target/</directory>
-              <include>asterix-server-${project.version}-binary-assembly.zip</include>
-            </resource>
-          </resources>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+  <profiles>
+    <profile>
+        <id>docker</id>
+        <build>
+          <plugins>
+            <plugin>
+              <groupId>com.spotify</groupId>
+              <artifactId>docker-maven-plugin</artifactId>
+              <version>0.2.11</version>
+              <configuration>
+                <imageName>asterixdb/demo</imageName>
+                <dockerDirectory>docker</dockerDirectory>
+                <resources>
+                  <resource>
+                    <targetPath>/</targetPath>
+                    <directory>../asterix-server/target/</directory>
+                    <include>asterix-server-${project.version}-binary-assembly.zip</include>
+                  </resource>
+                </resources>
+              </configuration>
+            </plugin>
+          </plugins>
+        </build>
+    </profile>
+  </profiles>
 
 </project>

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a07db5d3/asterixdb/pom.xml
----------------------------------------------------------------------
diff --git a/asterixdb/pom.xml b/asterixdb/pom.xml
index eaee996..d8aab3d 100644
--- a/asterixdb/pom.xml
+++ b/asterixdb/pom.xml
@@ -786,6 +786,7 @@
     <module>asterix-test-framework</module>
     <module>asterix-maven-plugins</module>
     <module>asterix-server</module>
+    <module>asterix-docker</module>
     <module>asterix-doc</module>
     <module>asterix-fuzzyjoin</module>
     <module>asterix-replication</module>