You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ni...@apache.org on 2018/06/14 14:25:04 UTC

[incubator-servicecomb-saga] branch master updated: SCB-630 Active the -Pdocker profile if detect the docker installation

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

ningjiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git


The following commit(s) were added to refs/heads/master by this push:
     new d24cb61  SCB-630 Active the -Pdocker profile if detect the docker installation
d24cb61 is described below

commit d24cb61e3e7aec486ab1d6a6cc25c32df8ad9be5
Author: SingleX <si...@gmail.com>
AuthorDate: Thu Jun 14 13:23:56 2018 +0800

    SCB-630 Active the -Pdocker profile if detect the docker installation
---
 acceptance-tests/acceptance-dubbo-demo/pom.xml        | 5 +++++
 acceptance-tests/acceptance-spring-cloud-demo/pom.xml | 5 +++++
 alpha/alpha-server/pom.xml                            | 5 +++++
 integration-tests/pack-tests/pom.xml                  | 5 +++++
 saga-demo/saga-dubbo-demo/servicea/pom.xml            | 5 +++++
 saga-demo/saga-dubbo-demo/serviceb/pom.xml            | 5 +++++
 saga-demo/saga-dubbo-demo/servicec/pom.xml            | 5 +++++
 saga-demo/saga-spring-cloud-demo/booking/pom.xml      | 5 +++++
 saga-demo/saga-spring-cloud-demo/car/pom.xml          | 5 +++++
 saga-demo/saga-spring-cloud-demo/hotel/pom.xml        | 5 +++++
 10 files changed, 50 insertions(+)

diff --git a/acceptance-tests/acceptance-dubbo-demo/pom.xml b/acceptance-tests/acceptance-dubbo-demo/pom.xml
index 1dd257a..79e7637 100644
--- a/acceptance-tests/acceptance-dubbo-demo/pom.xml
+++ b/acceptance-tests/acceptance-dubbo-demo/pom.xml
@@ -44,6 +44,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
index c4185d1..a9c7cc5 100644
--- a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
+++ b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
@@ -82,6 +82,11 @@
     </profile>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/alpha/alpha-server/pom.xml b/alpha/alpha-server/pom.xml
index 7d154a2..bfb8843 100644
--- a/alpha/alpha-server/pom.xml
+++ b/alpha/alpha-server/pom.xml
@@ -158,6 +158,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/integration-tests/pack-tests/pom.xml b/integration-tests/pack-tests/pom.xml
index fce01ed..fe23dec 100644
--- a/integration-tests/pack-tests/pom.xml
+++ b/integration-tests/pack-tests/pom.xml
@@ -150,6 +150,11 @@
     </profile>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-dubbo-demo/servicea/pom.xml b/saga-demo/saga-dubbo-demo/servicea/pom.xml
index dc2370b..9dad60d 100644
--- a/saga-demo/saga-dubbo-demo/servicea/pom.xml
+++ b/saga-demo/saga-dubbo-demo/servicea/pom.xml
@@ -60,6 +60,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-dubbo-demo/serviceb/pom.xml b/saga-demo/saga-dubbo-demo/serviceb/pom.xml
index d8dea59..7aa8bbc 100644
--- a/saga-demo/saga-dubbo-demo/serviceb/pom.xml
+++ b/saga-demo/saga-dubbo-demo/serviceb/pom.xml
@@ -56,6 +56,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-dubbo-demo/servicec/pom.xml b/saga-demo/saga-dubbo-demo/servicec/pom.xml
index 465df54..6046ed8 100644
--- a/saga-demo/saga-dubbo-demo/servicec/pom.xml
+++ b/saga-demo/saga-dubbo-demo/servicec/pom.xml
@@ -56,6 +56,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-spring-cloud-demo/booking/pom.xml b/saga-demo/saga-spring-cloud-demo/booking/pom.xml
index 45f4790..0f0275a 100644
--- a/saga-demo/saga-spring-cloud-demo/booking/pom.xml
+++ b/saga-demo/saga-spring-cloud-demo/booking/pom.xml
@@ -64,6 +64,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-spring-cloud-demo/car/pom.xml b/saga-demo/saga-spring-cloud-demo/car/pom.xml
index bfad217..389da02 100644
--- a/saga-demo/saga-spring-cloud-demo/car/pom.xml
+++ b/saga-demo/saga-spring-cloud-demo/car/pom.xml
@@ -64,6 +64,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
diff --git a/saga-demo/saga-spring-cloud-demo/hotel/pom.xml b/saga-demo/saga-spring-cloud-demo/hotel/pom.xml
index 40395ed..a4ba965 100644
--- a/saga-demo/saga-spring-cloud-demo/hotel/pom.xml
+++ b/saga-demo/saga-spring-cloud-demo/hotel/pom.xml
@@ -64,6 +64,11 @@
   <profiles>
     <profile>
       <id>docker</id>
+      <activation>
+        <file>
+          <exists>/var/run/docker.sock</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>

-- 
To stop receiving notification emails like this one, please contact
ningjiang@apache.org.