You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ma...@apache.org on 2019/08/23 16:34:01 UTC

[servicecomb-toolkit] branch master updated: SCB-1460 Skip the deployment of samples and it

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2b90ae5  SCB-1460 Skip the deployment of samples and it
     new 20ca789  Merge pull request #26 from kakulisen/master
2b90ae5 is described below

commit 2b90ae53c81e396dcb68a86052b775f5053975b7
Author: kakulisen <18...@163.com>
AuthorDate: Fri Aug 23 23:44:56 2019 +0800

    SCB-1460 Skip the deployment of samples and it
    
    Signed-off-by: kakulisen <18...@163.com>
---
 integration-tests/pom.xml | 13 ++++++++++++-
 samples/pom.xml           | 13 +++++++++++++
 2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index c90ae58..32a1741 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -32,5 +32,16 @@
     <module>coverage-aggregate</module>
   </modules>
 
-
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>2.8.2</version>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file
diff --git a/samples/pom.xml b/samples/pom.xml
index b319fbb..49ea1d5 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -33,4 +33,17 @@
     <module>verify-with-code-sample</module>
   </modules>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>2.8.2</version>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>
\ No newline at end of file