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-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
     new cfe2b29  [SCB-759] fix ServiceComb version
cfe2b29 is described below

commit cfe2b299bb58c064d7d87393567abb5acfd89dd0
Author: yaohaishi <yaohai...@huawei.com>
AuthorDate: Thu Jul 19 10:00:39 2018 +0800

    [SCB-759] fix ServiceComb version
---
 archetypes/README.md                                     | 2 +-
 samples/bmi/build.gradle                                 | 2 +-
 samples/bmi/calculator/build.gradle                      | 2 +-
 samples/bmi/webapp/build.gradle                          | 2 +-
 samples/codefirst-sample/build.gradle                    | 2 +-
 samples/codefirst-sample/codefirst-consumer/build.gradle | 6 +++---
 samples/codefirst-sample/codefirst-provider/build.gradle | 6 +++---
 samples/trust-sample/customer/pom.xml                    | 2 +-
 samples/trust-sample/hacker/pom.xml                      | 2 +-
 samples/trust-sample/pom.xml                             | 2 +-
 samples/trust-sample/store/pom.xml                       | 2 +-
 11 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/archetypes/README.md b/archetypes/README.md
index 687a6f4..84663b5 100644
--- a/archetypes/README.md
+++ b/archetypes/README.md
@@ -48,5 +48,5 @@ In console Interactive mode, input your GroupId, ArtifactId 
and Version of new p
 *Notice: We will publish these archetypes to maven center repository since 
1.0.0-m2, if you would like to use an archetype from an unreleased version, 
must use `archetypeRepository` option in the version 2.4 of archetype-plugin in 
order to set maven repository to apache snapshot groups: *
 
 ```bash
-mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate 
-DarchetypeGroupId=org.apache.servicecomb.archetypes 
-DarchetypeArtifactId=business-service-jaxrs-archetype 
-DarchetypeVersion=1.0.0-m2-SNAPSHOT 
-DarchetypeRepository=https://repository.apache.org/content/groups/snapshots-group
+mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate 
-DarchetypeGroupId=org.apache.servicecomb.archetypes 
-DarchetypeArtifactId=business-service-jaxrs-archetype 
-DarchetypeVersion=1.0.0-SNAPSHOT 
-DarchetypeRepository=https://repository.apache.org/content/groups/snapshots-group
 ```
\ No newline at end of file
diff --git a/samples/bmi/build.gradle b/samples/bmi/build.gradle
index 3dfb8b5..3b73658 100644
--- a/samples/bmi/build.gradle
+++ b/samples/bmi/build.gradle
@@ -19,7 +19,7 @@ allprojects  {
     apply plugin: 'maven'
 
     group = 'org.apache.servicecomb.samples'
-    version = '1.0.0-m2-SNAPSHOT'
+    version = '1.0.0-SNAPSHOT'
 }
 
 buildscript {
diff --git a/samples/bmi/calculator/build.gradle 
b/samples/bmi/calculator/build.gradle
index 16223d9..71c0019 100644
--- a/samples/bmi/calculator/build.gradle
+++ b/samples/bmi/calculator/build.gradle
@@ -44,6 +44,6 @@ apply plugin: 'io.spring.dependency-management'
 
 dependencyManagement {
     imports {
-        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-m2-SNAPSHOT'
+        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-SNAPSHOT'
     }
 }
diff --git a/samples/bmi/webapp/build.gradle b/samples/bmi/webapp/build.gradle
index c8973f6..1624d9c 100644
--- a/samples/bmi/webapp/build.gradle
+++ b/samples/bmi/webapp/build.gradle
@@ -44,6 +44,6 @@ apply plugin: 'io.spring.dependency-management'
 
 dependencyManagement {
     imports {
-        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-m2-SNAPSHOT'
+        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-SNAPSHOT'
     }
 }
diff --git a/samples/codefirst-sample/build.gradle 
b/samples/codefirst-sample/build.gradle
index cfff44a..67a7af5 100644
--- a/samples/codefirst-sample/build.gradle
+++ b/samples/codefirst-sample/build.gradle
@@ -19,7 +19,7 @@ allprojects  {
     apply plugin: 'maven'
 
     group = 'org.apache.servicecomb.samples'
-    version = '1.0.0-m2-SNAPSHOT'
+    version = '1.0.0-SNAPSHOT'
 }
 
 subprojects {
diff --git a/samples/codefirst-sample/codefirst-consumer/build.gradle 
b/samples/codefirst-sample/codefirst-consumer/build.gradle
index 060ad09..90d4ddc 100644
--- a/samples/codefirst-sample/codefirst-consumer/build.gradle
+++ b/samples/codefirst-sample/codefirst-consumer/build.gradle
@@ -21,7 +21,7 @@ dependencies {
     compile group: 'org.apache.servicecomb', name: 'provider-pojo'
     compile group: 'org.apache.servicecomb', name: 'transport-highway'
     compile group: 'org.apache.servicecomb', name: 'transport-rest-vertx'
-    compile group: 'org.apache.servicecomb.samples', name: 'common-schema', 
version: '1.0.0-m2-SNAPSHOT'
+    compile group: 'org.apache.servicecomb.samples', name: 'common-schema', 
version: '1.0.0-SNAPSHOT'
     compile group: 'org.slf4j', name: 'slf4j-log4j12'
 }
 
@@ -46,6 +46,6 @@ apply plugin: 'io.spring.dependency-management'
 
 dependencyManagement {
     imports {
-        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-m2-SNAPSHOT'
+        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-SNAPSHOT'
     }
-}
\ No newline at end of file
+}
diff --git a/samples/codefirst-sample/codefirst-provider/build.gradle 
b/samples/codefirst-sample/codefirst-provider/build.gradle
index bb0b845..9c85d07 100644
--- a/samples/codefirst-sample/codefirst-provider/build.gradle
+++ b/samples/codefirst-sample/codefirst-provider/build.gradle
@@ -22,7 +22,7 @@ dependencies {
     compile group: 'org.apache.servicecomb', name: 'provider-springmvc'
     compile group: 'org.apache.servicecomb', name: 'transport-highway'
     compile group: 'org.apache.servicecomb', name: 'transport-rest-vertx'
-    compile group: 'org.apache.servicecomb.samples', name: 'common-schema', 
version: '1.0.0-m2-SNAPSHOT'
+    compile group: 'org.apache.servicecomb.samples', name: 'common-schema', 
version: '1.0.0-SNAPSHOT'
     compile group: 'org.slf4j', name: 'slf4j-log4j12'
 }
 
@@ -47,6 +47,6 @@ apply plugin: 'io.spring.dependency-management'
 
 dependencyManagement {
     imports {
-        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-m2-SNAPSHOT'
+        mavenBom 
'org.apache.servicecomb:java-chassis-dependencies:1.0.0-SNAPSHOT'
     }
-}
\ No newline at end of file
+}
diff --git a/samples/trust-sample/customer/pom.xml 
b/samples/trust-sample/customer/pom.xml
index 8aa3839..fdabbff 100644
--- a/samples/trust-sample/customer/pom.xml
+++ b/samples/trust-sample/customer/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.servicecomb.samples</groupId>
     <artifactId>trust-sample</artifactId>
-    <version>1.0.0-m2-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
   </parent>
   <artifactId>customer</artifactId>
   <dependencies>
diff --git a/samples/trust-sample/hacker/pom.xml 
b/samples/trust-sample/hacker/pom.xml
index 91c7a31..8d85ae7 100644
--- a/samples/trust-sample/hacker/pom.xml
+++ b/samples/trust-sample/hacker/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.servicecomb.samples</groupId>
     <artifactId>trust-sample</artifactId>
-    <version>1.0.0-m2-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
   </parent>
   <artifactId>hacker</artifactId>
   <dependencies>
diff --git a/samples/trust-sample/pom.xml b/samples/trust-sample/pom.xml
index d688a54..c779031 100644
--- a/samples/trust-sample/pom.xml
+++ b/samples/trust-sample/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.servicecomb.samples</groupId>
     <artifactId>samples</artifactId>
-    <version>1.0.0-m2-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
   </parent>
   <artifactId>trust-sample</artifactId>
   <packaging>pom</packaging>
diff --git a/samples/trust-sample/store/pom.xml 
b/samples/trust-sample/store/pom.xml
index 07e9893..24fc1ea 100644
--- a/samples/trust-sample/store/pom.xml
+++ b/samples/trust-sample/store/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.servicecomb.samples</groupId>
     <artifactId>trust-sample</artifactId>
-    <version>1.0.0-m2-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
   </parent>
   <artifactId>store</artifactId>
   <dependencies>

Reply via email to