[incubator-dubbo] branch master updated: Clean pom.xml file #3186 (#3211)

2019-01-31 Thread hyunkun
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ea45921  Clean pom.xml file #3186 (#3211)
ea45921 is described below

commit ea459212218696808fbf6cbbd579e31f748eec17
Author: kezhenxu94 
AuthorDate: Thu Jan 31 17:07:53 2019 +0800

Clean pom.xml file #3186 (#3211)

* update as requested
* add meta space size arguments
---
 pom.xml | 40 +---
 1 file changed, 1 insertion(+), 39 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8f1a39b..7812620 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,7 +99,7 @@
 2.23.4
 
 -server -Xms256m -Xmx512m -XX:PermSize=64m 
-XX:MaxPermSize=128m -Dfile.encoding=UTF-8
--Djava.net.preferIPv4Stack=true
+-Djava.net.preferIPv4Stack=true -XX:MetaspaceSize=64m 
-XX:MaxMetaspaceSize=128m
 
 false
 true
@@ -196,17 +196,6 @@
 
 
 
-java6
-
-3.0.2
-2.22.1
-2.7
-3.1
-3.0.1
-2.10.1
-
-
-
 test
 
 
@@ -218,33 +207,6 @@
 
 
 
-hudson
-
-
-
-org.apache.maven.plugins
-maven-surefire-plugin
-
-true
-
-
-
-
-
-
-java8-vm-args
-
-[1.8,)
-
-
-
-
--server -Xms256m -Xmx512m -XX:MetaspaceSize=64m 
-XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8
--Djava.net.preferIPv4Stack=true
-
-
-
-
 checkstyle
 
 [1.8,)



[incubator-dubbo] branch master updated: [Enhancement] Use ThreadLocalRandom and try-with-resource (#3239)

2019-01-31 Thread iluo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new dbab8c5  [Enhancement] Use ThreadLocalRandom and try-with-resource 
(#3239)
dbab8c5 is described below

commit dbab8c5ba78fd7c0afadc9154b7b445b19a8cf64
Author: Song Kun 
AuthorDate: Thu Jan 31 17:31:54 2019 +0800

[Enhancement] Use ThreadLocalRandom and try-with-resource (#3239)

* polish

* fix code reviews

* empty
---
 .../org/apache/dubbo/common/utils/NetUtils.java| 74 ++
 .../apache/dubbo/common/utils/NetUtilsTest.java| 12 ++--
 .../metadata/support/AbstractMetadataReport.java   | 18 ++
 .../apache/dubbo/registry/redis/RedisRegistry.java |  9 ++-
 4 files changed, 48 insertions(+), 65 deletions(-)

diff --git 
a/dubbo-common/src/main/java/org/apache/dubbo/common/utils/NetUtils.java 
b/dubbo-common/src/main/java/org/apache/dubbo/common/utils/NetUtils.java
index 06450e2..9dc404e 100644
--- a/dubbo-common/src/main/java/org/apache/dubbo/common/utils/NetUtils.java
+++ b/dubbo-common/src/main/java/org/apache/dubbo/common/utils/NetUtils.java
@@ -32,47 +32,41 @@ import java.net.ServerSocket;
 import java.net.UnknownHostException;
 import java.util.Enumeration;
 import java.util.Map;
-import java.util.Random;
+import java.util.Optional;
+import java.util.concurrent.ThreadLocalRandom;
 import java.util.regex.Pattern;
 
 /**
  * IP and Port Helper for RPC
  */
 public class NetUtils {
-
 private static final Logger logger = 
LoggerFactory.getLogger(NetUtils.class);
-private static final int RND_PORT_START = 3;
 
+// returned port range is [3, 3]
+private static final int RND_PORT_START = 3;
 private static final int RND_PORT_RANGE = 1;
 
-private static final Random RANDOM = new 
Random(System.currentTimeMillis());
+// valid port range is (0, 65535]
 private static final int MIN_PORT = 0;
 private static final int MAX_PORT = 65535;
+
 private static final Pattern ADDRESS_PATTERN = 
Pattern.compile("^\\d{1,3}(\\.\\d{1,3}){3}\\:\\d{1,5}$");
 private static final Pattern LOCAL_IP_PATTERN = 
Pattern.compile("127(\\.\\d{1,3}){3}$");
 private static final Pattern IP_PATTERN = 
Pattern.compile("\\d{1,3}(\\.\\d{1,3}){3,5}$");
-private static final Map hostNameCache = new 
LRUCache(1000);
+
+private static final Map hostNameCache = new 
LRUCache<>(1000);
 private static volatile InetAddress LOCAL_ADDRESS = null;
 
 public static int getRandomPort() {
-return RND_PORT_START + RANDOM.nextInt(RND_PORT_RANGE);
+return RND_PORT_START + 
ThreadLocalRandom.current().nextInt(RND_PORT_RANGE);
 }
 
 public static int getAvailablePort() {
-ServerSocket ss = null;
-try {
-ss = new ServerSocket();
+try (ServerSocket ss = new ServerSocket()) {
 ss.bind(null);
 return ss.getLocalPort();
 } catch (IOException e) {
 return getRandomPort();
-} finally {
-if (ss != null) {
-try {
-ss.close();
-} catch (IOException e) {
-}
-}
 }
 }
 
@@ -81,19 +75,10 @@ public class NetUtils {
 return getAvailablePort();
 }
 for (int i = port; i < MAX_PORT; i++) {
-ServerSocket ss = null;
-try {
-ss = new ServerSocket(i);
+try (ServerSocket ss = new ServerSocket(i)) {
 return i;
 } catch (IOException e) {
 // continue
-} finally {
-if (ss != null) {
-try {
-ss.close();
-} catch (IOException e) {
-}
-}
 }
 }
 return port;
@@ -134,7 +119,7 @@ public class NetUtils {
 new InetSocketAddress(port) : new InetSocketAddress(host, 
port);
 }
 
-static boolean isValidAddress(InetAddress address) {
+static boolean isValidV4Address(InetAddress address) {
 if (address == null || address.isLoopbackAddress()) {
 return false;
 }
@@ -233,21 +218,31 @@ public class NetUtils {
 return localAddress;
 }
 
+private static Optional toValidAddress(InetAddress address) {
+if (address instanceof Inet6Address) {
+Inet6Address v6Address = (Inet6Address) address;
+if (isValidV6Address(v6Address)) {
+return Optional.ofNullable(normalizeV6Address(v6Address));
+}
+}
+if (isValidV4Address(address)) {
+return Optional.of(address);
+}
+return Optional.empty();
+}
+
 private static InetAddress getLocalAddress0() {
 InetAdd

[incubator-dubbo] branch master updated: polish pom.xml (remove test profile and jvm permSize args) (#3407)

2019-01-31 Thread hyunkun
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new b09a150  polish pom.xml (remove test profile and jvm permSize args) 
(#3407)
b09a150 is described below

commit b09a150d3d54590c2203d5c7da25ff925a9521dc
Author: Huang YunKun 
AuthorDate: Thu Jan 31 17:40:07 2019 +0800

polish pom.xml (remove test profile and jvm permSize args) (#3407)
---
 pom.xml | 13 +
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7812620..cbf2687 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,7 +98,7 @@
 2.2
 2.23.4
 
--server -Xms256m -Xmx512m -XX:PermSize=64m 
-XX:MaxPermSize=128m -Dfile.encoding=UTF-8
+-server -Xms256m -Xmx512m -Dfile.encoding=UTF-8
 -Djava.net.preferIPv4Stack=true -XX:MetaspaceSize=64m 
-XX:MaxMetaspaceSize=128m
 
 false
@@ -196,17 +196,6 @@
 
 
 
-test
-
-
-.project
-
-
-
-dubbo-test
-
-
-
 checkstyle
 
 [1.8,)



[incubator-dubbo] branch master updated: update dubbo samples' link (#3413)

2019-01-31 Thread kexianjun
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 99771a4  update dubbo samples' link (#3413)
99771a4 is described below

commit 99771a4ffee6b470d1baca912b87dbe4b75edb55
Author: Song Kun 
AuthorDate: Fri Feb 1 09:01:50 2019 +0800

update dubbo samples' link (#3413)
---
 README.md | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index efbe080..e89ffa4 100644
--- a/README.md
+++ b/README.md
@@ -29,14 +29,14 @@ We are now collecting dubbo user info in order to help us 
to improve Dubbo bette
 
 ## Getting started
 
-The following code snippet comes from [Dubbo 
Samples](https://github.com/dubbo/dubbo-samples/tree/master/dubbo-samples-api). 
You may clone the sample project and step into `dubbo-samples-api` sub 
directory before read on.
+The following code snippet comes from [Dubbo 
Samples](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api).
 You may clone the sample project and step into `dubbo-samples-api` sub 
directory before read on.
 
 ```bash
-# git clone https://github.com/dubbo/dubbo-samples.git
-# cd dubbo-samples/dubbo-samples-api
+# git clone https://github.com/apache/incubator-dubbo-samples.git
+# cd incubator-dubbo-samples/dubbo-samples-api
 ```
 
-There's a 
[README](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/README.md)
 file under `dubbo-samples-api` directory. Read it and try this sample out by 
following the instructions.
+There's a 
[README](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api/README.md)
 file under `dubbo-samples-api` directory. Read it and try this sample out by 
following the instructions.
 
 ### Maven dependency
 
@@ -80,7 +80,7 @@ public interface GreetingService {
 }
 ```
 
-*See 
[api/GreetingService.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java)
 on GitHub.*
+*See 
[api/GreetingService.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java)
 on GitHub.*
 
 ### Implement service interface for the provider
 
@@ -96,7 +96,7 @@ public class GreetingServiceImpl implements GreetingService {
 }
 ```
 
-*See 
[provider/GreetingServiceImpl.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java)
 on GitHub.*
+*See 
[provider/GreetingServiceImpl.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java)
 on GitHub.*
 
 ### Start service provider
 
@@ -124,7 +124,7 @@ public class Application {
 }
 ```
 
-*See 
[provider/Application.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/Application.java)
 on GitHub.*
+*See 
[provider/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/Application.java)
 on GitHub.*
 
 ### Build and run the provider
 
@@ -164,7 +164,7 @@ public class Application {
 
 The consumer will print out `Hello world` on the screen.
 
-*See 
[consumer/Application.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/consumer/Application.java)
 on GitHub.*
+*See 
[consumer/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/consumer/Application.java)
 on GitHub.*
 
 ### Next steps
 
@@ -210,11 +210,11 @@ Please follow the 
[template](https://github.com/apache/incubator-dubbo/issues/ne
 
 Please report security vulnerability to 
[us](secur...@dubbo.incubator.apache.org) privately.
 
-## Dubbo eco system
+## Dubbo ecosystem
 
 * [Dubbo Ecosystem Entry](https://github.com/dubbo) - A GitHub group `dubbo` 
to gather all Dubbo relevant projects not appropriate in 
[apache](https://github.com/apache) group yet
 * [Dubbo Website](https://github.com/apache/incubator-dubbo-website) - Apache 
Dubbo (incubating) official website
-* [Dubbo Samples](https://github.com/dubbo/dubbo-samples) - samples for Apache 
Dubbo (incubating)
+* [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples) - samples 
for Apache Dubbo (incubating)
 * [Dubbo Spring 
Boot](https://github.com/apache/incubator-dubbo-spring-boot-project) - Spring 
Boot Project for Dubbo
 * [Dubbo OPS](https://github.com/apache/incubator-dubbo-ops) - The reference 
implementation for Dubbo admin
 



[incubator-dubbo-spring-boot-project] branch 2.7.0-release updated: 1.0.0 (#431)

2019-01-31 Thread mercyblitz
This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a commit to branch 2.7.0-release
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git


The following commit(s) were added to refs/heads/2.7.0-release by this push:
 new fc519f1  1.0.0 (#431)
fc519f1 is described below

commit fc519f1919055ab78afa261d6a58498980147df6
Author: Mercy Ma 
AuthorDate: Fri Feb 1 09:49:03 2019 +0800

1.0.0 (#431)

* Polish apache/incubator-dubbo-spring-boot-project#395

* Polish apache/incubator-dubbo-spring-boot-project#395 fixed issues

* Polish apache/incubator-dubbo-spring-boot-project#395 Update documents

* Update the root POM's parent

* Replace ${project.version} to ${revision} in the "pom.xml" files

* Update 

* Remove Netty Project

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427 : Update Documents
---
 README.md |  59 ++--
 README_CN.md  | 196 +---
 dubbo-spring-boot-actuator/README.md  |  37 +--
 dubbo-spring-boot-actuator/README_CN.md   | 513 --
 dubbo-spring-boot-autoconfigure/README.md |  12 +-
 5 files changed, 113 insertions(+), 704 deletions(-)

diff --git a/README.md b/README.md
index 529dd9c..f393438 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ You can introduce the latest `dubbo-spring-boot-starter` to 
your project by addi
 ```xml
 
 2.1.1.RELEASE
-2.7.0-SNAPSHT
+2.7.0
 
 
 
@@ -72,11 +72,11 @@ You can introduce the latest `dubbo-spring-boot-starter` to 
your project by addi
 
 org.apache.dubbo
 dubbo-spring-boot-starter
-1.0.0-SNAPSHOT
+2.7.0
 
 
 
-com.alibaba
+org.apache.dubbo
 dubbo
 
 
@@ -137,13 +137,13 @@ public interface DemoService {
 ```java
 @Service(version = "1.0.0")
 public class DefaultDemoService implements DemoService {
-
+
 /**
-* The default value of ${dubbo.application.name} is 
${spring.application.name}
-*/
+ * The default value of ${dubbo.application.name} is 
${spring.application.name}
+ */
 @Value("${dubbo.application.name}")
 private String serviceName;
-
+
 public String sayHello(String name) {
 return String.format("[%s] : Hello, %s", serviceName, name);
 }
@@ -167,7 +167,6 @@ public interface DemoService {
 ```properties
 # Spring boot application
 spring.application.name=dubbo-auto-configuration-provider-demo
-
 # Base packages to scan Dubbo Component: 
@com.alibaba.dubbo.config.annotation.Service
 dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
 
@@ -191,44 +190,32 @@ public interface DemoService {
 
 ```java
 @EnableAutoConfiguration
-public class DubboConsumerBootstrap {
-
+public class DubboAutoConfigurationConsumerBootstrap {
+
 private final Logger logger = LoggerFactory.getLogger(getClass());
-
-@Reference(version = "1.0.0", url = "dubbo://localhost:12345")
+
+@Reference(version = "1.0.0", url = "dubbo://127.0.0.1:12345")
 private DemoService demoService;
-
+
+public static void main(String[] args) {
+
SpringApplication.run(DubboAutoConfigurationConsumerBootstrap.class).close();
+}
+
 @Bean
 public ApplicationRunner runner() {
 return args -> {
 logger.info(demoService.sayHello("mercyblitz"));
 };
 }
-
-public static void main(String[] args) {
-SpringApplication.run(DubboConsumerBootstrap.class).close();
-}
 }
 ```
 
-2. configures `application.properties`
-
-```properties
-# Spring boot application
-spring.application.name = dubbo-consumer-demo
-server.port = 8080
-management.port = 8081
-
-
-# Dubbo Config properties
-## ApplicationConfig Bean
-dubbo.application.id = dubbo-consumer-demo
-dubbo.application.name = dubbo-consumer-demo
+2. configures `application.yml`
 
-## ProtocolConfig Bean
-dubbo.protocol.id = dubbo
-dubbo.protocol.name = dubbo
-dubbo.protocol.port = 12345
+```yaml
+spring:
+  application:
+name: dubbo-auto-configure-consumer-sample
 ```
 
 If `DubboProviderDemo` works well, please mark sure `DubboProviderDemo` is 
started.
@@ -242,7 +229,7 @@ More details, please refer to 
[Samples](dubbo-spring-boot-samples).
 Having trouble with Dubbo Spring Boot? We’d like to help!
 
 - If you are upgrading, read the [release 
notes](https://github.com/dubbo/dubbo-spring-boot-project/releases) for upgra

[incubator-dubbo-spring-boot-project] branch 2.7.x updated: 2.7.0 release (#432)

2019-01-31 Thread mercyblitz
This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a commit to branch 2.7.x
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git


The following commit(s) were added to refs/heads/2.7.x by this push:
 new eefb3f8  2.7.0 release (#432)
eefb3f8 is described below

commit eefb3f802a82f3c172cbe65a1371c3561c48346f
Author: Mercy Ma 
AuthorDate: Fri Feb 1 09:55:27 2019 +0800

2.7.0 release (#432)

* 1.0.0 (#429)

* Polish apache/incubator-dubbo-spring-boot-project#395

* Polish apache/incubator-dubbo-spring-boot-project#395 fixed issues

* Polish apache/incubator-dubbo-spring-boot-project#395 Update documents

* Update the root POM's parent

* Replace ${project.version} to ${revision} in the "pom.xml" files

* Update 

* Remove Netty Project

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* 1.0.0 (#431)

* Polish apache/incubator-dubbo-spring-boot-project#395

* Polish apache/incubator-dubbo-spring-boot-project#395 fixed issues

* Polish apache/incubator-dubbo-spring-boot-project#395 Update documents

* Update the root POM's parent

* Replace ${project.version} to ${revision} in the "pom.xml" files

* Update 

* Remove Netty Project

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427 : Update Documents
---
 README.md |  59 ++--
 README_CN.md  | 196 +---
 dubbo-spring-boot-actuator/README.md  |  37 +--
 dubbo-spring-boot-actuator/README_CN.md   | 513 --
 dubbo-spring-boot-autoconfigure/README.md |  12 +-
 5 files changed, 113 insertions(+), 704 deletions(-)

diff --git a/README.md b/README.md
index 529dd9c..f393438 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ You can introduce the latest `dubbo-spring-boot-starter` to 
your project by addi
 ```xml
 
 2.1.1.RELEASE
-2.7.0-SNAPSHT
+2.7.0
 
 
 
@@ -72,11 +72,11 @@ You can introduce the latest `dubbo-spring-boot-starter` to 
your project by addi
 
 org.apache.dubbo
 dubbo-spring-boot-starter
-1.0.0-SNAPSHOT
+2.7.0
 
 
 
-com.alibaba
+org.apache.dubbo
 dubbo
 
 
@@ -137,13 +137,13 @@ public interface DemoService {
 ```java
 @Service(version = "1.0.0")
 public class DefaultDemoService implements DemoService {
-
+
 /**
-* The default value of ${dubbo.application.name} is 
${spring.application.name}
-*/
+ * The default value of ${dubbo.application.name} is 
${spring.application.name}
+ */
 @Value("${dubbo.application.name}")
 private String serviceName;
-
+
 public String sayHello(String name) {
 return String.format("[%s] : Hello, %s", serviceName, name);
 }
@@ -167,7 +167,6 @@ public interface DemoService {
 ```properties
 # Spring boot application
 spring.application.name=dubbo-auto-configuration-provider-demo
-
 # Base packages to scan Dubbo Component: 
@com.alibaba.dubbo.config.annotation.Service
 dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
 
@@ -191,44 +190,32 @@ public interface DemoService {
 
 ```java
 @EnableAutoConfiguration
-public class DubboConsumerBootstrap {
-
+public class DubboAutoConfigurationConsumerBootstrap {
+
 private final Logger logger = LoggerFactory.getLogger(getClass());
-
-@Reference(version = "1.0.0", url = "dubbo://localhost:12345")
+
+@Reference(version = "1.0.0", url = "dubbo://127.0.0.1:12345")
 private DemoService demoService;
-
+
+public static void main(String[] args) {
+
SpringApplication.run(DubboAutoConfigurationConsumerBootstrap.class).close();
+}
+
 @Bean
 public ApplicationRunner runner() {
 return args -> {
 logger.info(demoService.sayHello("mercyblitz"));
 };
 }
-
-public static void main(String[] args) {
-SpringApplication.run(DubboConsumerBootstrap.class).close();
-}
 }
 ```
 
-2. configures `application.properties`
-
-```properties
-# Spring boot application
-spring.application.name = dubbo-consumer-demo
-server.port = 8080
-management.port = 8081
-
-
-# Dubbo Config properties
-## ApplicationConfig Bean
-dubbo.application.id = dubbo-consumer-demo
-dubbo.application.name = dubbo

svn commit: r32273 - /dev/incubator/dubbo/spring-boot-project/2.7.0/

2019-01-31 Thread mercyblitz
Author: mercyblitz
Date: Fri Feb  1 02:02:45 2019
New Revision: 32273

Log:
Add apache-dubbo-spring-boot-project-incubating-2.7.0

Added:
dev/incubator/dubbo/spring-boot-project/2.7.0/

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
   (with props)

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
   (with props)

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.sha512

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
 Fri Feb  1 02:02:45 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEh/AlAnqDHtK4bn8Ip/UI79potPUFAlxTptUACgkQp/UI79po
+tPXGiRAAxTJ5NrZLOVKNDPGrSaFrPmNs3Rrj3C3Ij0WJ3qF35qtGWuzs55vWD6B8
+HNGh2v1WuIg11XIVj5FTYXbdUgazbmHB+/bbs/i4icxz1n6JBMBW2GEpFVTu6hLB
+x3y6ox0zqUL7Fr88ZiRSZYt5WUp3RtxnYH2qSFREpTuIYS7UBozgVKPiJ4/OfcdF
+2WQkY/25QtPmgi4h5OC/N2J5hs30nel8AotXF4wMZM49wpBUDu9PrAH+tSy29nxi
+v/CQOJzgnzO1BEfnviRKrP95nulnwXb4jtEiFVaiZcDXv9X4yCBY+SyD1q37Oson
+o9lGhT1NzWzqR7JA9JW0+Z4/MJwDwMI3ureptJ4AfajWb1tlXXX83AHtMGVa4gN1
+XVcNCI/SKMOmPWTDU+ysrpPROZpZ72GqxGr6AqFeENQ24cu3XkNQUqi1Dofnj68h
+qBTEb7bWU58aN+m40Ifpq6Vg6g57t4OojqwtzUs4k2cffsfaDClqF1DUu7bW6wca
+PJKbzmbJLZbK2CBnBCHYvfnhwPbCF/LVjKeTqw/IN/aRJ+TVE4fxTGBTQ6kVXzZY
+mCLaP8QpMtPMfkAHg50plgZWXqVeC5B6mpvMEc1kq1INie/wpd9cbRIpQ3DY6NoS
+oqbrH25xSq03byyegZlRrISIHWX9YiN4JdfZjffaJDhQ7fIx9JA=
+=uxpE
+-END PGP SIGNATURE-

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
 Fri Feb  1 02:02:45 2019
@@ -0,0 +1 @@
+d816728d11e1595a071c8aa31d69ac23b5cf428183e7fb037eb79773bf7b2c31a858ee07604d294173dc71e77d4fa650d431d55b3e369de4a942c24b48ae2fe7
  apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
 Fri Feb  1 02:02:45 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEh/AlAnqDHtK4bn8Ip/UI79potPUFAlxTptUACgkQp/UI79po
+tPUYoQ/+NhsRNLBY6wu5z7kLn5QR7NqhhKQeI9KKmCqfLZiwO/PZ2m2nkiabCdVD
+GmPbZGJQ/EklEzDS6/yR4w1Y6Z7v3poycGMk2E7qds6EtEoLl2dsymsQfjafNcUz
+WK3sjN/jLlpaktJpdAnF/JXgfam+rZ4oSz/4WNBHBj00YOVuXM0tGHTy2GIsD+Bf
+WSxTC8Wp4ZB5malX2sgV8o71cZUUWix5zDpnaeBpT8liQFimoZFWu9LOKFk0QBp0
+Vs9QK4IhHhL/iQsCLsJnXBd9ujMcHcFddjgStvVYk3FVLeQKRdX3wsfNMWUhpxbk
+TrC2EIA3515Kd9PLAG9sE1kP5BsXgXlIlDPbPOPGVm3UZKelJBC6y0YkW26o0qsi
+CMdIz2f9u3sUeowQJgJzi

svn commit: r32274 - /release/incubator/dubbo/spring-boot-project/2.7.0/

2019-01-31 Thread mercyblitz
Author: mercyblitz
Date: Fri Feb  1 02:07:00 2019
New Revision: 32274

Log:
Remove

Removed:
release/incubator/dubbo/spring-boot-project/2.7.0/



[incubator-dubbo-spring-boot-project] tag 2.7.0 deleted (was 2e5f935)

2019-01-31 Thread mercyblitz
This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a change to tag 2.7.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git.


*** WARNING: tag 2.7.0 was deleted! ***

 was 2e5f935  1.0.0 (#426)

The revisions that were on this tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[incubator-dubbo-spring-boot-project] tag 2.7.0 created (now fc519f1)

2019-01-31 Thread mercyblitz
This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a change to tag 2.7.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git.


  at fc519f1  (commit)
No new revisions were added by this update.



[incubator-dubbo-ops] branch 0.1-release updated: add license

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch 0.1-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/0.1-release by this push:
 new df428bc  add license
df428bc is described below

commit df428bc91820394c1457a4b6ba62c9540722c736
Author: nzomkxia 
AuthorDate: Fri Feb 1 11:46:25 2019 +0800

add license
---
 dubbo-admin-frontend/.eslintrc.js   | 17 +
 dubbo-admin-frontend/.postcssrc.js  | 17 +
 dubbo-admin-frontend/build/build.js | 17 +
 dubbo-admin-frontend/build/check-versions.js| 17 +
 dubbo-admin-frontend/build/utils.js | 17 +
 dubbo-admin-frontend/build/vue-loader.conf.js   | 17 +
 dubbo-admin-frontend/build/webpack.base.conf.js | 17 +
 dubbo-admin-frontend/build/webpack.dev.conf.js  | 17 +
 dubbo-admin-frontend/build/webpack.prod.conf.js | 19 ++-
 dubbo-admin-frontend/config/dev.env.js  | 17 +
 dubbo-admin-frontend/config/index.js| 17 +
 dubbo-admin-frontend/config/prod.env.js | 17 +
 12 files changed, 205 insertions(+), 1 deletion(-)

diff --git a/dubbo-admin-frontend/.eslintrc.js 
b/dubbo-admin-frontend/.eslintrc.js
index 2e2e211..cde7606 100644
--- a/dubbo-admin-frontend/.eslintrc.js
+++ b/dubbo-admin-frontend/.eslintrc.js
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 // https://eslint.org/docs/user-guide/configuring
 
 module.exports = {
diff --git a/dubbo-admin-frontend/.postcssrc.js 
b/dubbo-admin-frontend/.postcssrc.js
index eee3e92..dc9c58f 100644
--- a/dubbo-admin-frontend/.postcssrc.js
+++ b/dubbo-admin-frontend/.postcssrc.js
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 // https://github.com/michael-ciniawsky/postcss-load-config
 
 module.exports = {
diff --git a/dubbo-admin-frontend/build/build.js 
b/dubbo-admin-frontend/build/build.js
index 8f2ad8a..b6d0ada 100644
--- a/dubbo-admin-frontend/build/build.js
+++ b/dubbo-admin-frontend/build/build.js
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 'use strict'
 require('./check-versions')()
 
diff --git a/dubbo-admin-frontend/build/check-versions.js 
b/dubbo-admin-frontend/build/check-versions.js
index 3ef972a..b07e6e8 100644
--- a/dubbo-admin-frontend/build/check-versions.js
+++ b/dubbo-admin-frontend/build/check-versions.js
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one o

[incubator-dubbo-ops] branch 0.1-release updated: add repackage and binary resource

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch 0.1-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/0.1-release by this push:
 new 51ab4f2  add repackage and binary resource
51ab4f2 is described below

commit 51ab4f2d94c9f82ae19e5734690d9ee7077316e8
Author: nzomkxia 
AuthorDate: Fri Feb 1 11:46:57 2019 +0800

add repackage and binary resource
---
 dubbo-admin-backend/pom.xml|  8 
 dubbo-admin-distribution/pom.xml   | 12 ++
 .../src/assembly/bin-release.xml   | 45 ++
 3 files changed, 65 insertions(+)

diff --git a/dubbo-admin-backend/pom.xml b/dubbo-admin-backend/pom.xml
index 9783a33..846ed72 100644
--- a/dubbo-admin-backend/pom.xml
+++ b/dubbo-admin-backend/pom.xml
@@ -138,6 +138,14 @@
 org.springframework.boot
 spring-boot-maven-plugin
 2.0.2.RELEASE
+
+
+package
+
+repackage
+
+
+
 
 
 maven-clean-plugin
diff --git a/dubbo-admin-distribution/pom.xml b/dubbo-admin-distribution/pom.xml
index cd27bb8..b9ebab0 100644
--- a/dubbo-admin-distribution/pom.xml
+++ b/dubbo-admin-distribution/pom.xml
@@ -52,6 +52,18 @@
 3.1.0
 
 
+bin-release
+package
+
+single
+
+
+
+
src/assembly/bin-release.xml
+
+
+
+
 source-release
 package
 
diff --git a/dubbo-admin-distribution/src/assembly/bin-release.xml 
b/dubbo-admin-distribution/src/assembly/bin-release.xml
new file mode 100644
index 000..2f6b481
--- /dev/null
+++ b/dubbo-admin-distribution/src/assembly/bin-release.xml
@@ -0,0 +1,45 @@
+
+http://maven.apache.org/ASSEMBLY/2.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 
http://maven.apache.org/xsd/assembly-2.0.0.xsd";>
+bin-release
+
+zip
+
+true
+${project.build.finalName}-bin-release
+
+
+../
+
+DISCLAIMER
+NOTICE
+LICENSE
+
+
+
+
+
+
../dubbo-admin-backend/target/dubbo-admin-backend-${project.version}.jar
+
+
+
+
../dubbo-admin-backend/src/main/resources/application.properties
+
+
+
+



[incubator-dubbo-ops] branch 0.1-release updated: update license

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch 0.1-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/0.1-release by this push:
 new a5c6191  update license
a5c6191 is described below

commit a5c6191b9c8c357ba3450c2eb36cf6736b63189d
Author: nzomkxia 
AuthorDate: Fri Feb 1 14:54:27 2019 +0800

update license
---
 .../dubbo/admin/controller/ServiceTestController.java | 17 +
 .../apache/dubbo/admin/model/dto/ServiceTestDTO.java  | 17 +
 .../dubbo/admin/service/impl/GenericServiceImpl.java  | 17 +
 .../src/test/resources/LoadBalance.yml| 19 +++
 4 files changed, 70 insertions(+)

diff --git 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/controller/ServiceTestController.java
 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/controller/ServiceTestController.java
index 47921ed..f5f0da1 100644
--- 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/controller/ServiceTestController.java
+++ 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/controller/ServiceTestController.java
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.apache.dubbo.admin.controller;
 
 import com.google.gson.Gson;
diff --git 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/model/dto/ServiceTestDTO.java
 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/model/dto/ServiceTestDTO.java
index 14e25f4..fe540b2 100644
--- 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/model/dto/ServiceTestDTO.java
+++ 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/model/dto/ServiceTestDTO.java
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.apache.dubbo.admin.model.dto;
 
 public class ServiceTestDTO {
diff --git 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/service/impl/GenericServiceImpl.java
 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/service/impl/GenericServiceImpl.java
index 469ec9e..4040098 100644
--- 
a/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/service/impl/GenericServiceImpl.java
+++ 
b/dubbo-admin-backend/src/main/java/org/apache/dubbo/admin/service/impl/GenericServiceImpl.java
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.apache.dubbo.admin.service.impl;
 
 import org.apache.dubbo.config.ApplicationConfig;
diff --git a/dubbo-admin-backend/src/test/resources/LoadBalance.yml 
b/dubbo-admin-backend/src/test/resources/LoadBalance.yml
index 2220097..3

svn commit: r32281 - /dev/incubator/dubbo/spring-boot-project/2.7.0/

2019-01-31 Thread mercyblitz
Author: mercyblitz
Date: Fri Feb  1 06:59:22 2019
New Revision: 32281

Log:
Reload

Removed:

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.sha512



svn commit: r32282 - /dev/incubator/dubbo/spring-boot-project/2.7.0/

2019-01-31 Thread mercyblitz
Author: mercyblitz
Date: Fri Feb  1 07:00:19 2019
New Revision: 32282

Log:
Prepare apache-dubbo-spring-boot-project-incubating-2.7.0

Added:

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
   (with props)

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
   (with props)

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc

dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.sha512

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.asc
 Fri Feb  1 07:00:19 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEh/AlAnqDHtK4bn8Ip/UI79potPUFAlxTwfkACgkQp/UI79po
+tPWIkhAAipRrqXtJLQzG+ss5t2HDCj4mYilNdQhew7gDVCzPyW39yrkzCTnS1g1y
+Kbv4kwSirmGXmVxBqj4OuAknx4GFVvY4tfi5FF4NNZHc+7+fur3/Eh8xt85Kj9mq
+zMoZjQ9D1IhB0ICOUoNhAi0VmDL8BnFKuIgxgXwgGP5oxZM5vgtwfQo+JAMVIntJ
+c4PS4M8YQvOocy+TUGQif1UiGsuQXAb7eJ2pxEdN3ebp2ot+VC1cTEivol/Pv20b
+RY2YBrqdYv/nlazYpt7jyL/1lhWZXccNlwV+eaRJQYD4Tw1LxL8SKcnWZ6B62dce
+dofkY/4sbDD6VYbguOckZGqyCrRS/6/m3o0vphVlm5oFasjqxwUi4B+zvyv4NrsS
+jEPfy33RdwU+PGFgeF9TGE4cmnB5g1kefrsu6JBmlTB9hTMS3gIG4s56z3vRrD44
+C8B4J5uJpU7GOa50vL0ZGBh79L55eWybypDu0uOlMwhFYZoWRaJPHyrUnV+iAO9T
+2vkp57uSKDeJuxTFg02QBXZdYHU77wc+NGTyoKpkC83TkRb3BtyBkRpj0g9OJzkl
+OxDtXiVzbBwcBCrYV0oKY//IOV/3IyZnPsYdPMHMC58n9lj0lIEQ2W/Pb/JoTY8Z
+62vqLwbYMXa7U1GfE4zVg6EWO9wH+G9C//MsvN5DoVRjRWTU6Tk=
+=yOjr
+-END PGP SIGNATURE-

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip.sha512
 Fri Feb  1 07:00:19 2019
@@ -0,0 +1 @@
+b5f89b1c6bf297b4bef2a310ba3938e26278dfe98f664c090ad52c0ebd9c70d11f9acdfa52904437135f5e9e07baad4d761d4bfa3521ed7c08262a9ff20e8b24
 *apache-dubbo-spring-boot-project-incubating-2.7.0-bin-release.zip

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
==
--- 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
 (added)
+++ 
dev/incubator/dubbo/spring-boot-project/2.7.0/apache-dubbo-spring-boot-project-incubating-2.7.0-source-release.zip.asc
 Fri Feb  1 07:00:19 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEh/AlAnqDHtK4bn8Ip/UI79potPUFAlxTwfoACgkQp/UI79po
+tPWZWA//e0QnHECK+mjW+s5540TXgO8hPbswBvmOZYatcbijKAjEzfMaPPYHjUZR
+zBLIqSwSXmjpF9BSGj6RwyznaGwKwyOxOagA4+vMYrLSqu1yq+Qb8XqnVOutUN6q
+ZSHavBP6pLgSrbjn4Bd0YnGvuvzD4SNx7IwIxOuMHqN2EmuzAk9TVeCNybMeBFvk
+u1SbgCidJWx1kJ2QWprpUdRPBWp/0ztTFPtHtMzeg9/X81WDNhj3Ui8Smx7ZIvJr
+rVrnzq3NZd7DpJttjhUud7uz0RiJk2tdWSA1V1ww2BXGwAuYzGYtHQwOf8mZ1bmL
+pIdrbPQJ4vdIuBqt8d/EW24cTMZOf4TXw+fOP+wcQEG0QlYL8MiBuVm2KWyljpVh
+RXXp2xdPCHOiodI6LjPeHajydVUGrF8of5KMdEzxsU/w3ElA7RIGzIeMK+6BhODH
+BK

[incubator-dubbo-ops] branch 0.1-release updated: update license

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch 0.1-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/0.1-release by this push:
 new 90b9e56  update license
90b9e56 is described below

commit 90b9e5662eb50c83ca2d4325ad025fa80a6cae38
Author: nzomkxia 
AuthorDate: Fri Feb 1 15:25:14 2019 +0800

update license
---
 DISCLAIMER | 2 +-
 NOTICE | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/DISCLAIMER b/DISCLAIMER
index ca96520..13b8560 100644
--- a/DISCLAIMER
+++ b/DISCLAIMER
@@ -1 +1 @@
-Apache Dubbo is an effort undergoing incubation at The Apache Software 
Foundation (ASF), sponsored by the Incubator. Incubation is required of all 
newly accepted projects until a further review indicates that the 
infrastructure, communications, and decision making process have stabilized in 
a manner consistent with other successful ASF projects. While incubation status 
is not necessarily a reflection of the completeness or stability of the code, 
it does indicate that the project has yet  [...]
+Apache Dubbo OPS is an effort undergoing incubation at The Apache Software 
Foundation (ASF), sponsored by the Incubator. Incubation is required of all 
newly accepted projects until a further review indicates that the 
infrastructure, communications, and decision making process have stabilized in 
a manner consistent with other successful ASF projects. While incubation status 
is not necessarily a reflection of the completeness or stability of the code, 
it does indicate that the project has  [...]
diff --git a/NOTICE b/NOTICE
index 0014ba8..f004473 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Dubbo (incubating)
+Apache Dubbo OPS (incubating)
 Copyright 2018-2019 The Apache Software Foundation
 
 This product includes software developed at



svn commit: r32285 - /dev/incubator/dubbo/dubbo-ops/0.1/

2019-01-31 Thread min
Author: min
Date: Fri Feb  1 07:31:22 2019
New Revision: 32285

Log:
prepare for apache dubbo ops incubating 0.1 RC2

Added:

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip
   (with props)

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.asc

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.sha512
Modified:

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.sha512

Added: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.asc
==
--- 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.asc
 (added)
+++ 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.asc
 Fri Feb  1 07:31:22 2019
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCgAdFiEENp58r+GNbRtnG5122iEIR5sMHnEFAlxT9OIACgkQ2iEIR5sM
+HnHmXAf9GKxB/AHlvNwrjrQ22L1mIkfg4I+6S0ZV1v5/YYjGI/RV0F7gk7SqPtf9
+6U/aXs7jhFe+ZN+XseCoIj3R6c+G+dxU3GhRyYo/9mbx7mhr/2Z+n3/RgZ39JGTk
+j7R3XGzk6PUXz/iEUXr5bCMTKYRIpdFenYmy1Lr/dJHfDuTU/jhKdxGhc6rysJJC
+fwklYErj2i3f2/0GkHaiWnqX6k5nxHiq9dlWT0Df3NFrEKGp1sgOf6Hz1ba1O/nA
+PAzkWbxvLExTF2GRxGeaYcW0YhZSneOt1aJqTQ9Ib7KVNQTHyj2Au9vyAErtAzA1
+zrLFlTqlKo7WiS+ye+0esxtvbIfTPw==
+=AFsO
+-END PGP SIGNATURE-

Added: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.sha512
==
--- 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.sha512
 (added)
+++ 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-bin-release.zip.sha512
 Fri Feb  1 07:31:22 2019
@@ -0,0 +1 @@
+9941af6a27239fd021d5c75b964d1fdb58f5d66a40f1d20434ede8a4a3db9903f53428447123ae5c13c49e818153f598e755a1fd00c26d0c345b838b6e535150
  apache-dubbo-ops-incubating-0.1-bin-release.zip

Modified: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc
==
--- 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc
 (original)
+++ 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc
 Fri Feb  1 07:31:22 2019
@@ -1,11 +1,11 @@
 -BEGIN PGP SIGNATURE-
 
-iQEzBAABCgAdFiEENp58r+GNbRtnG5122iEIR5sMHnEFAlxSl1EACgkQ2iEIR5sM
-HnE11ggAtSxNja9fVwDlOsJioR2uEnGeXR9XXga5S1IUfEUyeEo+fubVsJO/IIyK
-n5BY+KhneT0QZiBlQ9htUkEgnBwnM9WCDWW40kJat3Kct07aTmYQAdUYgzfopWmO
-lxawmbCg6HNcwlMB5KMAnMjxj9hZ+ACde5KnZZQT8XRDwx7Z1Kd49/fVa1EL1rj6
-cm8jLar8WJ3+uJ60rCm2nOuAJ0Musjf2yRPaUuZXs7cHvI/bebA9pX3sYRx53IbT
-6gVoZUHpNBwFMHqx9OvDMbv4QNWkvx0w2NJfnr+xWm3rXOowhRChrL2O3SQE1s6j
-wpef5a5RrDRAc9SpwJdkk41FGpnoVA==
-=Giph
+iQEzBAABCgAdFiEENp58r+GNbRtnG5122iEIR5sMHnEFAlxT9OIACgkQ2iEIR5sM
+HnH5rwf+K4yCL9Sp8IWR686tL4rKHouG9zedKvyfi35GkCazNArI6t+Spa8Z1UD9
+7Iy1Wegkk1x/mUTDnql67fq8WkfoL3DVrtmU2XbvUR0+PY04lEHwgMHCcNJm4KQP
+ccPop37/EOAFADq8UOqsDlFrWfavCSHQtg/LA1R9DuacfAE/e7Jf7UOvKPB89nBQ
+mXWeDSi6qPhweTLtzndBlWnygKXQu+eiAm3wo3XS3/YVxkR9gqFcXeEAQwDWWqZj
+YVLGX1xb5dsEEcJWsxQZONd3Sol7E8LtTSprf4je+eN+NLlgb49hakXbie6abpXi
+5aW9Cefc0A38eKmkypi/PXD/O3Cyrg==
+=42g3
 -END PGP SIGNATURE-

Modified: 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.sha512
==
--- 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.sha512
 (original)
+++ 
dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.sha512
 Fri Feb  1 07:31:22 2019
@@ -1 +1 @@
-0d10fca50ce6599d1de612a4f4377cd164210a4433d6188463005d6a881d343ef9d9ca64060815692c9ed274fbe4d052fdbec5565974a9bbcd45b56017896ec0
  apache-dubbo-ops-incubating-0.1-source-release.zip
+ae093a1f40cca451b7b83290f4eb7aa0c87cead22c8986062b47bc42f8580ac3248ccb111ced32d1daab98533548096fdcf7eb869ae1a6eb909cd4d81fff15f5
  apache-dubbo-ops-incubating-0.1-source-release.zip




svn commit: r32286 - /dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc.sha512

2019-01-31 Thread min
Author: min
Date: Fri Feb  1 07:33:49 2019
New Revision: 32286

Log:
prepare for apache dubbo ops incubating 0.1 RC2

Removed:

dev/incubator/dubbo/dubbo-ops/0.1/apache-dubbo-ops-incubating-0.1-source-release.zip.asc.sha512



[incubator-dubbo] branch 2.6.x updated: Activate SPI sort (#3412)

2019-01-31 Thread iluo
This is an automated email from the ASF dual-hosted git repository.

iluo pushed a commit to branch 2.6.x
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/2.6.x by this push:
 new 342e814  Activate SPI sort (#3412)
342e814 is described below

commit 342e814296b08b3383bd0815978f3ad9389c0586
Author: 杜小东 <30755351+dong...@users.noreply.github.com>
AuthorDate: Fri Feb 1 15:42:14 2019 +0800

Activate SPI sort (#3412)

* 修正排序

* Update 
dubbo-common/src/main/java/com/alibaba/dubbo/common/extension/support/ActivateComparator.java

code style

Co-Authored-By: dongYES <30755351+dong...@users.noreply.github.com>
---
 .../extension/support/ActivateComparator.java  | 180 +++--
 1 file changed, 94 insertions(+), 86 deletions(-)

diff --git 
a/dubbo-common/src/main/java/com/alibaba/dubbo/common/extension/support/ActivateComparator.java
 
b/dubbo-common/src/main/java/com/alibaba/dubbo/common/extension/support/ActivateComparator.java
index 7cf7a1b..1386efa 100644
--- 
a/dubbo-common/src/main/java/com/alibaba/dubbo/common/extension/support/ActivateComparator.java
+++ 
b/dubbo-common/src/main/java/com/alibaba/dubbo/common/extension/support/ActivateComparator.java
@@ -1,86 +1,94 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.alibaba.dubbo.common.extension.support;
-
-import com.alibaba.dubbo.common.extension.Activate;
-import com.alibaba.dubbo.common.extension.ExtensionLoader;
-import com.alibaba.dubbo.common.extension.SPI;
-
-import java.util.Comparator;
-
-/**
- * OrderComparetor
- */
-public class ActivateComparator implements Comparator {
-
-public static final Comparator COMPARATOR = new 
ActivateComparator();
-
-@Override
-public int compare(Object o1, Object o2) {
-if (o1 == null && o2 == null) {
-return 0;
-}
-if (o1 == null) {
-return -1;
-}
-if (o2 == null) {
-return 1;
-}
-if (o1.equals(o2)) {
-return 0;
-}
-Activate a1 = o1.getClass().getAnnotation(Activate.class);
-Activate a2 = o2.getClass().getAnnotation(Activate.class);
-if ((a1.before().length > 0 || a1.after().length > 0
-|| a2.before().length > 0 || a2.after().length > 0)
-&& o1.getClass().getInterfaces().length > 0
-&& 
o1.getClass().getInterfaces()[0].isAnnotationPresent(SPI.class)) {
-ExtensionLoader extensionLoader = 
ExtensionLoader.getExtensionLoader(o1.getClass().getInterfaces()[0]);
-if (a1.before().length > 0 || a1.after().length > 0) {
-String n2 = extensionLoader.getExtensionName(o2.getClass());
-for (String before : a1.before()) {
-if (before.equals(n2)) {
-return -1;
-}
-}
-for (String after : a1.after()) {
-if (after.equals(n2)) {
-return 1;
-}
-}
-}
-if (a2.before().length > 0 || a2.after().length > 0) {
-String n1 = extensionLoader.getExtensionName(o1.getClass());
-for (String before : a2.before()) {
-if (before.equals(n1)) {
-return 1;
-}
-}
-for (String after : a2.after()) {
-if (after.equals(n1)) {
-return -1;
-}
-}
-}
-}
-int n1 = a1 == null ? 0 : a1.order();
-int n2 = a2 == null ? 0 : a2.order();
-// never return 0 even if n1 equals n2, otherwise, o1 and o2 will 
override each other in collection like HashSet
-return n1 > n2 ? 1 : -1;
-}
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.

[incubator-dubbo-spring-boot-project] branch 2.7.0-release updated: 2.7.0 (#433)

2019-01-31 Thread mercyblitz
This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a commit to branch 2.7.0-release
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git


The following commit(s) were added to refs/heads/2.7.0-release by this push:
 new 33d2ec6  2.7.0 (#433)
33d2ec6 is described below

commit 33d2ec625f4c59c717c5afa7be56d2b39fa9059a
Author: Mercy Ma 
AuthorDate: Fri Feb 1 15:44:31 2019 +0800

2.7.0 (#433)

* Polish apache/incubator-dubbo-spring-boot-project#395

* Polish apache/incubator-dubbo-spring-boot-project#395 fixed issues

* Polish apache/incubator-dubbo-spring-boot-project#395 Update documents

* Update the root POM's parent

* Replace ${project.version} to ${revision} in the "pom.xml" files

* Update 

* Remove Netty Project

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427

* Polish : apache/incubator-dubbo-spring-boot-project#427 : Update Documents

* Polish : apache/incubator-dubbo-spring-boot-project#427 : Fixed include 
pattern
---
 dubbo-spring-boot-distribution/assembly/bin-release.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-spring-boot-distribution/assembly/bin-release.xml 
b/dubbo-spring-boot-distribution/assembly/bin-release.xml
index 1a94381..e055929 100644
--- a/dubbo-spring-boot-distribution/assembly/bin-release.xml
+++ b/dubbo-spring-boot-distribution/assembly/bin-release.xml
@@ -40,7 +40,7 @@
 /libs
 runtime
 
-com.alibaba.boot:*
+org.apache.dubbo:*
 
 
 com.alibaba:fastjson



[incubator-dubbo-ops] tag 0.1 deleted (was 32cb3be)

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a change to tag 0.1
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git.


*** WARNING: tag 0.1 was deleted! ***

 was 32cb3be  add DISCLAIMER

The revisions that were on this tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[incubator-dubbo-ops] tag 0.1 created (now 90b9e56)

2019-01-31 Thread min
This is an automated email from the ASF dual-hosted git repository.

min pushed a change to tag 0.1
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git.


  at 90b9e56  (commit)
No new revisions were added by this update.