[incubator-dubbo] branch master updated: Fix incorrect descriptions for dubbo-serialization module. (#2620)

2018-10-08 Thread carryxyh
This is an automated email from the ASF dual-hosted git repository.

carryxyh 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 5a25e7d  Fix incorrect descriptions for dubbo-serialization module. 
(#2620)
5a25e7d is described below

commit 5a25e7dc0d7178df341ef5f18ee403a6d048796b
Author: 时无两丶 <442367...@qq.com>
AuthorDate: Tue Oct 9 14:57:31 2018 +0800

Fix incorrect descriptions for dubbo-serialization module. (#2620)

Fix incorrect descriptions for dubbo-serialization module.
---
 dubbo-serialization/dubbo-serialization-api/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-fastjson/pom.xml | 2 +-
 dubbo-serialization/dubbo-serialization-fst/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-hessian2/pom.xml | 2 +-
 dubbo-serialization/dubbo-serialization-jdk/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-kryo/pom.xml | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dubbo-serialization/dubbo-serialization-api/pom.xml 
b/dubbo-serialization/dubbo-serialization-api/pom.xml
index 277f904..486fc9d 100644
--- a/dubbo-serialization/dubbo-serialization-api/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-api/pom.xml
@@ -25,7 +25,7 @@ limitations under the License.
 dubbo-serialization-api
 jar
 ${project.artifactId}
-The common module of dubbo project
+The serialization interface module of dubbo 
project
 
 false
 
diff --git a/dubbo-serialization/dubbo-serialization-fastjson/pom.xml 
b/dubbo-serialization/dubbo-serialization-fastjson/pom.xml
index 9368bc1..d1221b3 100644
--- a/dubbo-serialization/dubbo-serialization-fastjson/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-fastjson/pom.xml
@@ -25,7 +25,7 @@ limitations under the License.
 dubbo-serialization-fastjson
 jar
 ${project.artifactId}
-The common module of dubbo project
+The fastjson serialization module of dubbo 
project
 
 false
 
diff --git a/dubbo-serialization/dubbo-serialization-fst/pom.xml 
b/dubbo-serialization/dubbo-serialization-fst/pom.xml
index 6fc674f..ad73437 100644
--- a/dubbo-serialization/dubbo-serialization-fst/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-fst/pom.xml
@@ -24,7 +24,7 @@
 dubbo-serialization-fst
 jar
 ${project.artifactId}
-The common module of dubbo project
+The fst serialization module of dubbo project
 
 false
 
diff --git a/dubbo-serialization/dubbo-serialization-hessian2/pom.xml 
b/dubbo-serialization/dubbo-serialization-hessian2/pom.xml
index e9701f4..0f91b78 100644
--- a/dubbo-serialization/dubbo-serialization-hessian2/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-hessian2/pom.xml
@@ -25,7 +25,7 @@ limitations under the License.
 dubbo-serialization-hessian2
 jar
 ${project.artifactId}
-The common module of dubbo project
+The hessian2 serialization module of dubbo 
project
 
 false
 
diff --git a/dubbo-serialization/dubbo-serialization-jdk/pom.xml 
b/dubbo-serialization/dubbo-serialization-jdk/pom.xml
index 62018a7..23b56a2 100644
--- a/dubbo-serialization/dubbo-serialization-jdk/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-jdk/pom.xml
@@ -25,7 +25,7 @@ limitations under the License.
 dubbo-serialization-jdk
 jar
 ${project.artifactId}
-The common module of dubbo project
+The jdk serialization module of dubbo project
 
 false
 
diff --git a/dubbo-serialization/dubbo-serialization-kryo/pom.xml 
b/dubbo-serialization/dubbo-serialization-kryo/pom.xml
index 96db7b1..df29f2a 100644
--- a/dubbo-serialization/dubbo-serialization-kryo/pom.xml
+++ b/dubbo-serialization/dubbo-serialization-kryo/pom.xml
@@ -25,7 +25,7 @@ limitations under the License.
 dubbo-serialization-kryo
 jar
 ${project.artifactId}
-The common module of dubbo project
+The kryo serialization module of dubbo project
 
 false
 



[incubator-dubbo] branch master updated: Fixed a minor issue with doConnect not using getConnectTimeout() in NettyClient (#2595)

2018-10-08 Thread carryxyh
This is an automated email from the ASF dual-hosted git repository.

carryxyh 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 8abd590  Fixed a minor issue with doConnect not using 
getConnectTimeout() in NettyClient (#2595)
8abd590 is described below

commit 8abd59029e7c0bc0973b492fd84a386b26661bc7
Author: yizhenqiang 
AuthorDate: Tue Oct 9 11:57:52 2018 +0800

Fixed a minor issue with doConnect not using getConnectTimeout() in 
NettyClient (#2595)

* Fixed a minor issue with doConnect not using getConnectTimeout() in 
NettyClient

* Fixed some problems with connectTimeout, CONNECT_TIMEOUT_KEY, timeout, 
and TIMEOUT_KEY being used incorrectly.
---
 .../java/org/apache/dubbo/remoting/transport/AbstractClient.java| 2 +-
 .../org/apache/dubbo/remoting/transport/grizzly/GrizzlyClient.java  | 2 +-
 .../java/org/apache/dubbo/remoting/transport/mina/MinaClient.java   | 6 +++---
 .../java/org/apache/dubbo/remoting/transport/netty/NettyClient.java | 2 +-
 .../org/apache/dubbo/remoting/transport/netty4/NettyClient.java | 6 +++---
 .../main/java/org/apache/dubbo/rpc/protocol/rest/RestProtocol.java  | 2 +-
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/AbstractClient.java
 
b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/AbstractClient.java
index a945586..477fa71 100644
--- 
a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/AbstractClient.java
+++ 
b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/AbstractClient.java
@@ -276,7 +276,7 @@ public abstract class AbstractClient extends 
AbstractEndpoint implements Client
 if (!isConnected()) {
 throw new RemotingException(this, "Failed connect to server " 
+ getRemoteAddress() + " from " + getClass().getSimpleName() + " "
 + NetUtils.getLocalHost() + " using dubbo version " + 
Version.getVersion()
-+ ", cause: Connect wait timeout: " + getTimeout() + 
"ms.");
++ ", cause: Connect wait timeout: " + 
getConnectTimeout() + "ms.");
 } else {
 if (logger.isInfoEnabled()) {
 logger.info("Successed connect to server " + 
getRemoteAddress() + " from " + getClass().getSimpleName() + " "
diff --git 
a/dubbo-remoting/dubbo-remoting-grizzly/src/main/java/org/apache/dubbo/remoting/transport/grizzly/GrizzlyClient.java
 
b/dubbo-remoting/dubbo-remoting-grizzly/src/main/java/org/apache/dubbo/remoting/transport/grizzly/GrizzlyClient.java
index 30f47b8..2753d21 100644
--- 
a/dubbo-remoting/dubbo-remoting-grizzly/src/main/java/org/apache/dubbo/remoting/transport/grizzly/GrizzlyClient.java
+++ 
b/dubbo-remoting/dubbo-remoting-grizzly/src/main/java/org/apache/dubbo/remoting/transport/grizzly/GrizzlyClient.java
@@ -66,7 +66,7 @@ public class GrizzlyClient extends AbstractClient {
 .setMaxPoolSize(Integer.MAX_VALUE)
 .setKeepAliveTime(60L, TimeUnit.SECONDS);
 builder.setTcpNoDelay(true).setKeepAlive(true)
-.setConnectionTimeout(getTimeout())
+.setConnectionTimeout(getConnectTimeout())
 .setIOStrategy(SameThreadIOStrategy.getInstance());
 transport = builder.build();
 transport.setProcessor(filterChainBuilder.build());
diff --git 
a/dubbo-remoting/dubbo-remoting-mina/src/main/java/org/apache/dubbo/remoting/transport/mina/MinaClient.java
 
b/dubbo-remoting/dubbo-remoting-mina/src/main/java/org/apache/dubbo/remoting/transport/mina/MinaClient.java
index 552becd..23296f7 100644
--- 
a/dubbo-remoting/dubbo-remoting-mina/src/main/java/org/apache/dubbo/remoting/transport/mina/MinaClient.java
+++ 
b/dubbo-remoting/dubbo-remoting-mina/src/main/java/org/apache/dubbo/remoting/transport/mina/MinaClient.java
@@ -78,7 +78,7 @@ public class MinaClient extends AbstractClient {
 cfg.setThreadModel(ThreadModel.MANUAL);
 cfg.getSessionConfig().setTcpNoDelay(true);
 cfg.getSessionConfig().setKeepAlive(true);
-int timeout = getTimeout();
+int timeout = getConnectTimeout();
 cfg.setConnectTimeout(timeout < 1000 ? 1 : timeout / 1000);
 // set codec.
 connector.getFilterChain().addLast("codec", new 
ProtocolCodecFilter(new MinaCodecAdapter(getCodec(), getUrl(), this)));
@@ -135,10 +135,10 @@ public class MinaClient extends AbstractClient {
 }
 });
 try {
-finish.await(getTimeout(), TimeUnit.MILLISECONDS);
+finish.await(getConnectTimeout(), TimeUnit.MILLISECONDS);
 } catch (InterruptedException e) {
 throw new RemotingException(this, "cli

[incubator-dubbo] branch master updated: Remove unuse class. (#2608)

2018-10-08 Thread carryxyh
This is an automated email from the ASF dual-hosted git repository.

carryxyh 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 d8ed9fe  Remove unuse class. (#2608)
d8ed9fe is described below

commit d8ed9fe97cd10f64b7e2ffbf8d36c7a198b6f23b
Author: 时无两丶 <442367...@qq.com>
AuthorDate: Tue Oct 9 11:49:20 2018 +0800

Remove unuse class. (#2608)

remove unuse classes.
readd it if it will be used again.
---
 .../apache/dubbo/rpc/support/DelegateExporter.java | 47 -
 .../apache/dubbo/rpc/support/DelegateInvoker.java  | 61 --
 2 files changed, 108 deletions(-)

diff --git 
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateExporter.java
 
b/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateExporter.java
deleted file mode 100644
index 76d6dd4..000
--- 
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateExporter.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * 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.rpc.support;
-
-import org.apache.dubbo.rpc.Exporter;
-import org.apache.dubbo.rpc.Invoker;
-
-/**
- * DelegateExporter
- */
-public class DelegateExporter implements Exporter {
-
-private final Exporter exporter;
-
-public DelegateExporter(Exporter exporter) {
-if (exporter == null) {
-throw new IllegalArgumentException("exporter can not be null");
-} else {
-this.exporter = exporter;
-}
-
-}
-
-@Override
-public Invoker getInvoker() {
-return exporter.getInvoker();
-}
-
-@Override
-public void unexport() {
-exporter.unexport();
-}
-}
diff --git 
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateInvoker.java
 
b/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateInvoker.java
deleted file mode 100644
index eea4fcb..000
--- 
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/support/DelegateInvoker.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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.rpc.support;
-
-import org.apache.dubbo.common.URL;
-import org.apache.dubbo.rpc.Invocation;
-import org.apache.dubbo.rpc.Invoker;
-import org.apache.dubbo.rpc.Result;
-import org.apache.dubbo.rpc.RpcException;
-
-/**
- * DelegateInvoker
- */
-public abstract class DelegateInvoker implements Invoker {
-
-protected final Invoker invoker;
-
-public DelegateInvoker(Invoker invoker) {
-this.invoker = invoker;
-}
-
-@Override
-public Class getInterface() {
-return invoker.getInterface();
-}
-
-@Override
-public URL getUrl() {
-return invoker.getUrl();
-}
-
-@Override
-public boolean isAvailable() {
-return invoker.isAvailable();
-}
-
-@Override
-public Result invoke(Invocation invocation) throws RpcException {
-return invoker.invoke(invocation);
-}
-
-@Override
-public void destroy() {
-invoker.destroy();
-}
-
-}



[incubator-dubbo] branch 2.6.x updated: update release script (#2615)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick 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 5adb9bf  update release script (#2615)
5adb9bf is described below

commit 5adb9bfb59acdba3115f2b4cd1d9ec72ecec42cc
Author: Jerrick Zhu 
AuthorDate: Tue Oct 9 11:46:53 2018 +0800

update release script (#2615)
---
 release.sh | 334 +
 1 file changed, 114 insertions(+), 220 deletions(-)

diff --git a/release.sh b/release.sh
index e33940e..d5e9401 100755
--- a/release.sh
+++ b/release.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #  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.
@@ -14,26 +14,11 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 
-# set -e
-# set -x
-
-function fail {
->&2 echo "\033[31m\033[01m[
-FATAL ERROR:
---
-$1 ]\033[0m"
-
-echo "Clear current work dir"
-git add .
-git commit -m 'Failed preparation for release.'
-exit 1
-}
 
 function fail_noclear {
->&2 echo "\033[31m\033[01m[
-FATAL ERROR:
+>&2 echo "FATAL ERROR:
 --
-$1 ]\033[0m"
+$1"
 exit 1
 }
 
@@ -44,142 +29,58 @@ xpath /pom:project/pom:version/text()
 EOF
 }
 
-function generate_promotion_script {
-echo "Generating release promotion script 'promote-$version.sh'"
-read -d '' script <<- EOF
-#!/bin/bash
-echo "Promoting release $version
-Actions about to be performed:
---
-\$(cat \$0 | tail -n +14)
---"
-read -p "Press enter to continue or CTRL-C to abort"
-# promote the source distribution by moving it from the staging area to the 
release area
-# mv https://dist.apache.org/repos/dist/dev/incubator/dubbo/$version 
https://dist.apache.org/repos/dist/release/incubator/dubbo/ -m "Upload release 
to the mirrors"
-#mvn org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7:rc-release 
-DstagingRepositoryId=$stagingRepositoryId -DnexusUrl=https://oss.sonatype.org/ 
-DserverId=sonatype-nexus-staging -Ddescription="Release vote has passed"
-# Renumber the next development iteration $next_version:
-git checkout $branch
-mvn release:update-versions --batch-mode
-mvn versions:set versions:commit -DprocessAllModules=true 
-DnewVersion=$next_version
-git add --all
-git commit -m 'Start the next development version'
-echo "
-Please check the new versions and merge $branch to the base branch.
-"
-EOF
-
-echo "$script" > promote-$version.sh
-chmod +x promote-$version.sh
-git add promote-$version.sh
-}
-
-function generate_rollback_script {
-   echo "Generating release rollback script 'revert-$version.sh'"
-read -d '' script <<- EOF
-#!/bin/bash
-echo -n "Reverting release $version
-Actions about to be performed:
---
-\$(cat \$0 | tail -n +14)
---
-Press enter to continue or CTRL-C to abort"
-read
-# clean up local repository
-git checkout $GIT_BRANCH
-git branch -D $branch
-git tag -d $tag
-# clean up staging dist area
-#svn rm https://dist.apache.org/repos/dist/dev/incubator/dubbo/$version -m 
"Release vote has failed"
-# clean up staging maven repository
-#mvn org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7:rc-drop 
-DstagingRepositoryId=$stagingrepoid -DnexusUrl=https://oss.sonatype.org/ 
-DserverId=sonatype-nexus-staging -Ddescription="Release vote has failed"
-# clean up remaining release files
-find . -name "*.releaseBackup" -exec rm {} \\;
-[ -f release.properties ] && rm release.properties
-EOF
-echo "$script" > revert-$version.sh
-
-   chmod +x revert-$version.sh
-   git add revert-$version.sh
-}
-
-function generate_release_vote_email {
-
-echo "Generating Vote email"
-
-echo "
-Hello Dubbo Community,
-
-This is a call for vote to release Apache Dubbo (Incubating) version 
$version.
-
-The release candidates (RC5):
-https://dist.apache.org/repos/dist/dev/incubator/dubbo/$version
+REPO=""
+BRANCH=""
 
-Git tag for the release (RC5):
-https://github.com/apache/incubator-dubbo/tree/dubbo-$version
-Hash for the release tag:
-3963d8fd93642398375ea92acb7ed4d2bc1b0518
-
-Release Notes:
-https://github.com/apache/incubator-dubbo/blob/dubbo-$version/CHANGES.md
-
-The artifacts have been signed with Key : 28681CB1, which can be found in 
the keys file:
-https://dist.apache.org/repos/dist/dev/incubator/dubbo/KEYS
-
-The vote will be open for at least 72 hours or until necessary number of 
votes are reached.
-
-Please vote accordingly:
+if [[ $# -eq 2 ]]; then
+   REPO=$1
+   BRANCH=

[incubator-dubbo] annotated tag dubbo-2.6.5 deleted (was 02eb06b)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to annotated tag dubbo-2.6.5
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


*** WARNING: tag dubbo-2.6.5 was deleted! ***

   tag was  02eb06b

This change permanently discards the following revisions:

 discard dae220a  [maven-release-plugin] prepare release dubbo-2.6.5



[incubator-dubbo] branch 2.6.5-release deleted (was c4eb4e8)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


 was c4eb4e8  Removed jdk9 from .travis.yml. (#2609)

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



[incubator-dubbo] branch 2.6.5-release-staging deleted (was 2c56668)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


 was 2c56668  [maven-release-plugin] prepare for next development iteration

This change permanently discards the following revisions:

 discard 2c56668  [maven-release-plugin] prepare for next development iteration



[incubator-dubbo] 02/02: [maven-release-plugin] prepare for next development iteration

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a commit to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit 2c566681a067a5e7ae831ea768f22ea8eec1f22c
Author: zhuyong 
AuthorDate: Tue Oct 9 10:44:11 2018 +0800

[maven-release-plugin] prepare for next development iteration
---
 all/pom.xml| 4 ++--
 bom/pom.xml| 4 ++--
 dependencies-bom/pom.xml   | 4 ++--
 distribution/pom.xml   | 2 +-
 dubbo-bootstrap/pom.xml| 2 +-
 dubbo-cluster/pom.xml  | 2 +-
 dubbo-common/pom.xml   | 2 +-
 dubbo-config/dubbo-config-api/pom.xml  | 2 +-
 dubbo-config/dubbo-config-spring/pom.xml   | 2 +-
 dubbo-config/pom.xml   | 2 +-
 dubbo-container/dubbo-container-api/pom.xml| 2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  | 2 +-
 dubbo-container/dubbo-container-logback/pom.xml| 2 +-
 dubbo-container/dubbo-container-spring/pom.xml | 2 +-
 dubbo-container/pom.xml| 2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  | 2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml | 2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml | 2 +-
 dubbo-demo/pom.xml | 2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml| 2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   | 2 +-
 dubbo-filter/pom.xml   | 2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml| 2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml| 2 +-
 dubbo-monitor/pom.xml  | 2 +-
 dubbo-plugin/dubbo-qos/pom.xml | 2 +-
 dubbo-plugin/pom.xml   | 2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml| 2 +-
 dubbo-registry/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml| 2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   | 2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml| 2 +-
 dubbo-remoting/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml | 2 +-
 dubbo-rpc/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-api/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-fastjson/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-fst/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-hessian2/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-jdk/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-kryo/pom.xml   | 2 +-
 dubbo-serialization/pom.xml| 2 +-
 dubbo-test/dubbo-test-benchmark/pom.xml| 2 +-
 dubbo-test/dubbo-test-compatibility/dubbo-test-spring3/pom.xml | 2 +-
 dubbo-test/dubbo-test-compatibility/pom.xml| 2 +-
 dubbo-test/dubbo-test-examples/pom.xml | 2 +-
 dub

[incubator-dubbo] branch 2.6.5-release-staging created (now 2c56668)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


  at 2c56668  [maven-release-plugin] prepare for next development iteration

This branch includes the following new commits:

 new dae220a  [maven-release-plugin] prepare release dubbo-2.6.5
 new 2c56668  [maven-release-plugin] prepare for next development iteration

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[incubator-dubbo] 01/02: [maven-release-plugin] prepare release dubbo-2.6.5

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a commit to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit dae220ad98305f77cf68d7e338ba512ec38fd72b
Author: zhuyong 
AuthorDate: Tue Oct 9 10:44:10 2018 +0800

[maven-release-plugin] prepare release dubbo-2.6.5
---
 all/pom.xml| 4 ++--
 bom/pom.xml| 4 ++--
 dependencies-bom/pom.xml   | 4 ++--
 distribution/pom.xml   | 2 +-
 dubbo-bootstrap/pom.xml| 2 +-
 dubbo-cluster/pom.xml  | 2 +-
 dubbo-common/pom.xml   | 2 +-
 dubbo-config/dubbo-config-api/pom.xml  | 2 +-
 dubbo-config/dubbo-config-spring/pom.xml   | 2 +-
 dubbo-config/pom.xml   | 2 +-
 dubbo-container/dubbo-container-api/pom.xml| 2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  | 2 +-
 dubbo-container/dubbo-container-logback/pom.xml| 2 +-
 dubbo-container/dubbo-container-spring/pom.xml | 2 +-
 dubbo-container/pom.xml| 2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  | 2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml | 2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml | 2 +-
 dubbo-demo/pom.xml | 2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml| 2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   | 2 +-
 dubbo-filter/pom.xml   | 2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml| 2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml| 2 +-
 dubbo-monitor/pom.xml  | 2 +-
 dubbo-plugin/dubbo-qos/pom.xml | 2 +-
 dubbo-plugin/pom.xml   | 2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml| 2 +-
 dubbo-registry/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml| 2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   | 2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml| 2 +-
 dubbo-remoting/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml | 2 +-
 dubbo-rpc/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-api/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-fastjson/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-fst/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-hessian2/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-jdk/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-kryo/pom.xml   | 2 +-
 dubbo-serialization/pom.xml| 2 +-
 dubbo-test/dubbo-test-benchmark/pom.xml| 2 +-
 dubbo-test/dubbo-test-compatibility/dubbo-test-spring3/pom.xml | 2 +-
 dubbo-test/dubbo-test-compatibility/pom.xml| 2 +-
 dubbo-test/dubbo-test-examples/pom.xml | 2 +-
 dubbo-test/dub

[incubator-dubbo] annotated tag dubbo-2.6.5 updated (dae220a -> 02eb06b)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to annotated tag dubbo-2.6.5
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


*** WARNING: tag dubbo-2.6.5 was modified! ***

from dae220a  (commit)
  to 02eb06b  (tag)
 tagging dae220ad98305f77cf68d7e338ba512ec38fd72b (commit)
 replaces dubbo-2.6.4
  by zhuyong
  on Tue Oct 9 10:44:10 2018 +0800

- Log -
[maven-release-plugin] copy for tag dubbo-2.6.5
---


No new revisions were added by this update.

Summary of changes:



[incubator-dubbo] branch 2.6.5-release-staging deleted (was 0375a61)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


 was 0375a61  [maven-release-plugin] prepare for next development iteration

This change permanently discards the following revisions:

 discard 0375a61  [maven-release-plugin] prepare for next development iteration
 discard f99f8f2  [maven-release-plugin] prepare release dubbo-2.6.5



[incubator-dubbo] annotated tag dubbo-2.6.5 deleted (was 3c05793)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to annotated tag dubbo-2.6.5
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


*** WARNING: tag dubbo-2.6.5 was deleted! ***

   tag was  3c05793

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



[incubator-dubbo] branch 2.6.5-release-staging created (now 0375a61)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


  at 0375a61  [maven-release-plugin] prepare for next development iteration

This branch includes the following new commits:

 new f99f8f2  [maven-release-plugin] prepare release dubbo-2.6.5
 new 0375a61  [maven-release-plugin] prepare for next development iteration

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[incubator-dubbo] annotated tag dubbo-2.6.5 updated (f99f8f2 -> 3c05793)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to annotated tag dubbo-2.6.5
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


*** WARNING: tag dubbo-2.6.5 was modified! ***

from f99f8f2  (commit)
  to 3c05793  (tag)
 tagging f99f8f204f38e96bb1cab7f52d5fdf4ccd62d033 (commit)
 replaces dubbo-2.6.4
  by zhuyong
  on Tue Oct 9 10:30:50 2018 +0800

- Log -
[maven-release-plugin] copy for tag dubbo-2.6.5
---


No new revisions were added by this update.

Summary of changes:



[incubator-dubbo] 02/02: [maven-release-plugin] prepare for next development iteration

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a commit to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit 0375a61ad692d2815b554d28a43194c193d786ab
Author: zhuyong 
AuthorDate: Tue Oct 9 10:30:51 2018 +0800

[maven-release-plugin] prepare for next development iteration
---
 all/pom.xml| 4 ++--
 bom/pom.xml| 4 ++--
 dependencies-bom/pom.xml   | 4 ++--
 distribution/pom.xml   | 2 +-
 dubbo-bootstrap/pom.xml| 2 +-
 dubbo-cluster/pom.xml  | 2 +-
 dubbo-common/pom.xml   | 2 +-
 dubbo-config/dubbo-config-api/pom.xml  | 2 +-
 dubbo-config/dubbo-config-spring/pom.xml   | 2 +-
 dubbo-config/pom.xml   | 2 +-
 dubbo-container/dubbo-container-api/pom.xml| 2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  | 2 +-
 dubbo-container/dubbo-container-logback/pom.xml| 2 +-
 dubbo-container/dubbo-container-spring/pom.xml | 2 +-
 dubbo-container/pom.xml| 2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  | 2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml | 2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml | 2 +-
 dubbo-demo/pom.xml | 2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml| 2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   | 2 +-
 dubbo-filter/pom.xml   | 2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml| 2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml| 2 +-
 dubbo-monitor/pom.xml  | 2 +-
 dubbo-plugin/dubbo-qos/pom.xml | 2 +-
 dubbo-plugin/pom.xml   | 2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml| 2 +-
 dubbo-registry/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml| 2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   | 2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml| 2 +-
 dubbo-remoting/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml | 2 +-
 dubbo-rpc/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-api/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-fastjson/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-fst/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-hessian2/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-jdk/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-kryo/pom.xml   | 2 +-
 dubbo-serialization/pom.xml| 2 +-
 dubbo-test/dubbo-test-benchmark/pom.xml| 2 +-
 dubbo-test/dubbo-test-compatibility/dubbo-test-spring3/pom.xml | 2 +-
 dubbo-test/dubbo-test-compatibility/pom.xml| 2 +-
 dubbo-test/dubbo-test-examples/pom.xml | 2 +-
 dub

[incubator-dubbo] 01/02: [maven-release-plugin] prepare release dubbo-2.6.5

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a commit to branch 2.6.5-release-staging
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit f99f8f204f38e96bb1cab7f52d5fdf4ccd62d033
Author: zhuyong 
AuthorDate: Tue Oct 9 10:30:50 2018 +0800

[maven-release-plugin] prepare release dubbo-2.6.5
---
 all/pom.xml| 4 ++--
 bom/pom.xml| 4 ++--
 dependencies-bom/pom.xml   | 4 ++--
 distribution/pom.xml   | 2 +-
 dubbo-bootstrap/pom.xml| 2 +-
 dubbo-cluster/pom.xml  | 2 +-
 dubbo-common/pom.xml   | 2 +-
 dubbo-config/dubbo-config-api/pom.xml  | 2 +-
 dubbo-config/dubbo-config-spring/pom.xml   | 2 +-
 dubbo-config/pom.xml   | 2 +-
 dubbo-container/dubbo-container-api/pom.xml| 2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  | 2 +-
 dubbo-container/dubbo-container-logback/pom.xml| 2 +-
 dubbo-container/dubbo-container-spring/pom.xml | 2 +-
 dubbo-container/pom.xml| 2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  | 2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml | 2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml | 2 +-
 dubbo-demo/pom.xml | 2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml| 2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   | 2 +-
 dubbo-filter/pom.xml   | 2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml| 2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml| 2 +-
 dubbo-monitor/pom.xml  | 2 +-
 dubbo-plugin/dubbo-qos/pom.xml | 2 +-
 dubbo-plugin/pom.xml   | 2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  | 2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml| 2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml| 2 +-
 dubbo-registry/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml | 2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml| 2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   | 2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  | 2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml| 2 +-
 dubbo-remoting/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  | 2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   | 2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml| 2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml | 2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml | 2 +-
 dubbo-rpc/pom.xml  | 2 +-
 dubbo-serialization/dubbo-serialization-api/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-fastjson/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-fst/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-hessian2/pom.xml   | 2 +-
 dubbo-serialization/dubbo-serialization-jdk/pom.xml| 2 +-
 dubbo-serialization/dubbo-serialization-kryo/pom.xml   | 2 +-
 dubbo-serialization/pom.xml| 2 +-
 dubbo-test/dubbo-test-benchmark/pom.xml| 2 +-
 dubbo-test/dubbo-test-compatibility/dubbo-test-spring3/pom.xml | 2 +-
 dubbo-test/dubbo-test-compatibility/pom.xml| 2 +-
 dubbo-test/dubbo-test-examples/pom.xml | 2 +-
 dubbo-test/dub

[incubator-dubbo] branch 2.6.5-release created (now c4eb4e8)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.5-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


  at c4eb4e8  Removed jdk9 from .travis.yml. (#2609)

No new revisions were added by this update.



[incubator-dubbo] branch 2.6.x updated: Removed jdk9 from .travis.yml. (#2609)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick 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 c4eb4e8  Removed jdk9 from .travis.yml. (#2609)
c4eb4e8 is described below

commit c4eb4e8ceb14965f2abd881b70ba6f1f994d3940
Author: cbolgiano 
AuthorDate: Mon Oct 8 20:50:29 2018 -0400

Removed jdk9 from .travis.yml. (#2609)
---
 .travis.yml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 5aaa1ba..a6c3dcc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,6 @@ language: java
 sudo: false # faster builds
 
 jdk:
-- oraclejdk9
 - oraclejdk8
 - openjdk7
 



[incubator-dubbo] branch master updated: fix #2600 add javadoc-plugin to dubbo-all module (#2604)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick 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 046bc30  fix #2600 add javadoc-plugin to dubbo-all module (#2604)
046bc30 is described below

commit 046bc3081f7a98d539f9fb1b9af375ad80868ea8
Author: Jerrick Zhu 
AuthorDate: Tue Oct 9 08:49:48 2018 +0800

fix #2600 add javadoc-plugin to dubbo-all module (#2604)
---
 dubbo-all/pom.xml | 39 +++
 1 file changed, 39 insertions(+)

diff --git a/dubbo-all/pom.xml b/dubbo-all/pom.xml
index 7a1cdd3..f26a1e2 100644
--- a/dubbo-all/pom.xml
+++ b/dubbo-all/pom.xml
@@ -556,4 +556,43 @@
 
 
 
+
+
+
+release
+
+
+
+maven-javadoc-plugin
+${maven_javadoc_version}
+
+
+attach-javadoc
+
+jar
+
+
+none
+
+
+
+
+
true
+
+
org.apache.dubbo:dubbo-*
+
com.alibaba:hessian-*
+
+public
+UTF-8
+UTF-8
+UTF-8
+
+
http://docs.oracle.com/javase/7/docs/api
+
+
+
+
+
+
+
 
\ No newline at end of file



[incubator-dubbo] branch 2.6.x updated: fix #2600, add javadoc plugin to dubbo-all module (#2602)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick 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 79ea2ac  fix #2600, add javadoc plugin to dubbo-all module (#2602)
79ea2ac is described below

commit 79ea2acba862ed31dec2615220e0accac49c3dfb
Author: Jerrick Zhu 
AuthorDate: Mon Oct 8 16:38:29 2018 +0800

fix #2600, add javadoc plugin to dubbo-all module (#2602)
---
 all/pom.xml | 39 +++
 1 file changed, 39 insertions(+)

diff --git a/all/pom.xml b/all/pom.xml
index edda11c..3988449 100644
--- a/all/pom.xml
+++ b/all/pom.xml
@@ -549,4 +549,43 @@
 
 
 
+
+
+
+release
+
+
+
+maven-javadoc-plugin
+${maven_javadoc_version}
+
+
+attach-javadoc
+
+jar
+
+
+none
+
+
+
+
+
true
+
+
com.alibaba:dubbo-*
+
com.alibaba:hessian-*
+
+public
+UTF-8
+UTF-8
+UTF-8
+
+
http://docs.oracle.com/javase/7/docs/api
+
+
+
+
+
+
+
 
\ No newline at end of file



[incubator-dubbo] branch master updated: update lastest version to 2.6.4 (#2601)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick 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 3c34ee8  update lastest version to 2.6.4 (#2601)
3c34ee8 is described below

commit 3c34ee88fd79b5df0441320e53042b60a00bf76b
Author: Jerrick Zhu 
AuthorDate: Mon Oct 8 16:02:38 2018 +0800

update lastest version to 2.6.4 (#2601)
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 4161d6b..75ec970 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ There's a 
[README](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samp
 
 com.alibaba
 dubbo
-2.6.3
+2.6.4
 
 ```
 



[incubator-dubbo] branch 2.6.4-release deleted (was d7af5d9)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

jerrick pushed a change to branch 2.6.4-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


 was d7af5d9  [maven-release-plugin] prepare for next development iteration

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



[incubator-dubbo] branch 2.6.x updated (28e1037 -> f77c9fc)

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

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


from 28e1037  Optimize LeastActiveLoadBalance and add weight test case. 
(#2584)
 add 39ea8a8  add change log for 2.6.4
 add 3750059  change port for unit test
 add 57399a2  Enhance NOTICE file.
 add f7baac7  Merge branch '2.6.4-release' of 
github.com:apache/incubator-dubbo into 2.6.4-release
 add 8803774  [maven-release-plugin] prepare release dubbo-2.6.4
 add d7af5d9  [maven-release-plugin] prepare for next development iteration
 new f77c9fc  Merge branch '2.6.4-release' into 2.6.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.md | 27 +-
 NOTICE | 11 -
 all/pom.xml|  4 ++--
 bom/pom.xml|  2 +-
 dependencies-bom/pom.xml   |  2 +-
 distribution/pom.xml   |  2 +-
 dubbo-bootstrap/pom.xml|  2 +-
 dubbo-cluster/pom.xml  |  2 +-
 dubbo-common/pom.xml   |  2 +-
 dubbo-config/dubbo-config-api/pom.xml  |  2 +-
 dubbo-config/dubbo-config-spring/pom.xml   |  2 +-
 .../alibaba/dubbo/config/spring/ConfigTest.java|  4 ++--
 .../dubbo/config/spring/delay-fixed-time.xml   |  2 +-
 .../dubbo/config/spring/delay-on-initialized.xml   |  2 +-
 dubbo-config/pom.xml   |  2 +-
 dubbo-container/dubbo-container-api/pom.xml|  2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  |  2 +-
 dubbo-container/dubbo-container-logback/pom.xml|  2 +-
 dubbo-container/dubbo-container-spring/pom.xml |  2 +-
 dubbo-container/pom.xml|  2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  |  2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml |  2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml |  2 +-
 dubbo-demo/pom.xml |  2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml|  2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   |  2 +-
 dubbo-filter/pom.xml   |  2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml|  2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml|  2 +-
 dubbo-monitor/pom.xml  |  2 +-
 dubbo-plugin/dubbo-qos/pom.xml |  2 +-
 dubbo-plugin/pom.xml   |  2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  |  2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  |  2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml|  2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml|  2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml|  2 +-
 dubbo-registry/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml|  2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   |  2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml|  2 +-
 dubbo-remoting/pom.xml |  2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  |  2 +-
 .../dubbo/telnet/ChangeTelnetHandlerTest.java  |  2 +-
 .../dubbo/telnet/InvokerTelnetHandlerTest.java | 12 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   |  2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   |  2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml |  2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml |  2 +-
 dubbo-rpc/pom.xml  |  2 +-
 .../dubbo-serialization-api/pom.xml|  2 +-
 .../dubbo-serialization-fastjson/pom.xml   |  2 +-
 .../dubbo-serialization-fst/pom.xml|  2 +-
 .../dubbo-serialization-hessian2/pom.xml   |  2 +-
 .../dubbo-serialization-jdk/pom.xml|  2 +-
 .../dubbo-serialization-kryo/pom.xml  

[incubator-dubbo] 01/01: Merge branch '2.6.4-release' into 2.6.x

2018-10-08 Thread jerrick
This is an automated email from the ASF dual-hosted git repository.

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

commit f77c9fcc5ecfa10ce535a75b877bbce9ba078c70
Merge: 28e1037 d7af5d9
Author: zhuyong 
AuthorDate: Mon Oct 8 15:15:15 2018 +0800

Merge branch '2.6.4-release' into 2.6.x

 CHANGES.md | 27 +-
 NOTICE | 11 -
 all/pom.xml|  4 ++--
 bom/pom.xml|  2 +-
 dependencies-bom/pom.xml   |  2 +-
 distribution/pom.xml   |  2 +-
 dubbo-bootstrap/pom.xml|  2 +-
 dubbo-cluster/pom.xml  |  2 +-
 dubbo-common/pom.xml   |  2 +-
 dubbo-config/dubbo-config-api/pom.xml  |  2 +-
 dubbo-config/dubbo-config-spring/pom.xml   |  2 +-
 .../alibaba/dubbo/config/spring/ConfigTest.java|  4 ++--
 .../dubbo/config/spring/delay-fixed-time.xml   |  2 +-
 .../dubbo/config/spring/delay-on-initialized.xml   |  2 +-
 dubbo-config/pom.xml   |  2 +-
 dubbo-container/dubbo-container-api/pom.xml|  2 +-
 dubbo-container/dubbo-container-log4j/pom.xml  |  2 +-
 dubbo-container/dubbo-container-logback/pom.xml|  2 +-
 dubbo-container/dubbo-container-spring/pom.xml |  2 +-
 dubbo-container/pom.xml|  2 +-
 dubbo-demo/dubbo-demo-api/pom.xml  |  2 +-
 dubbo-demo/dubbo-demo-consumer/pom.xml |  2 +-
 dubbo-demo/dubbo-demo-provider/pom.xml |  2 +-
 dubbo-demo/pom.xml |  2 +-
 dubbo-filter/dubbo-filter-cache/pom.xml|  2 +-
 dubbo-filter/dubbo-filter-validation/pom.xml   |  2 +-
 dubbo-filter/pom.xml   |  2 +-
 dubbo-monitor/dubbo-monitor-api/pom.xml|  2 +-
 dubbo-monitor/dubbo-monitor-default/pom.xml|  2 +-
 dubbo-monitor/pom.xml  |  2 +-
 dubbo-plugin/dubbo-qos/pom.xml |  2 +-
 dubbo-plugin/pom.xml   |  2 +-
 dubbo-registry/dubbo-registry-api/pom.xml  |  2 +-
 dubbo-registry/dubbo-registry-default/pom.xml  |  2 +-
 dubbo-registry/dubbo-registry-multicast/pom.xml|  2 +-
 dubbo-registry/dubbo-registry-redis/pom.xml|  2 +-
 dubbo-registry/dubbo-registry-zookeeper/pom.xml|  2 +-
 dubbo-registry/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-api/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-grizzly/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-http/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-mina/pom.xml |  2 +-
 dubbo-remoting/dubbo-remoting-netty/pom.xml|  2 +-
 dubbo-remoting/dubbo-remoting-netty4/pom.xml   |  2 +-
 dubbo-remoting/dubbo-remoting-p2p/pom.xml  |  2 +-
 dubbo-remoting/dubbo-remoting-zookeeper/pom.xml|  2 +-
 dubbo-remoting/pom.xml |  2 +-
 dubbo-rpc/dubbo-rpc-api/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-dubbo/pom.xml  |  2 +-
 .../dubbo/telnet/ChangeTelnetHandlerTest.java  |  2 +-
 .../dubbo/telnet/InvokerTelnetHandlerTest.java | 12 +-
 dubbo-rpc/dubbo-rpc-hessian/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-http/pom.xml   |  2 +-
 dubbo-rpc/dubbo-rpc-injvm/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-memcached/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-redis/pom.xml  |  2 +-
 dubbo-rpc/dubbo-rpc-rest/pom.xml   |  2 +-
 dubbo-rpc/dubbo-rpc-rmi/pom.xml|  2 +-
 dubbo-rpc/dubbo-rpc-thrift/pom.xml |  2 +-
 dubbo-rpc/dubbo-rpc-webservice/pom.xml |  2 +-
 dubbo-rpc/pom.xml  |  2 +-
 .../dubbo-serialization-api/pom.xml|  2 +-
 .../dubbo-serialization-fastjson/pom.xml   |  2 +-
 .../dubbo-serialization-fst/pom.xml|  2 +-
 .../dubbo-serialization-hessian2/pom.xml   |  2 +-
 .../dubbo-serialization-jdk/pom.xml|  2 +-
 .../dubbo-serialization-kryo/pom.xml   |  2 +-
 dubbo-serialization/pom.xml|  2 +-
 dubbo-test/dubbo-test-benchmark/pom.xml|  2 +-
 .../dubbo-test-spring3/pom.xml |  2 +-
 dubbo-test/dubbo-test-compatibility/pom.xml|  2 +-
 dubbo-test/dubbo-test-examples/pom.xml |  2 +-
 dubbo-test/dubbo-test-integration/pom.xml  |  2 +-
 dubbo-test/pom.xml |  4 ++--
 pom.xml|  4 ++--
 75 files changed, 118 insertions(+), 84 deletions(-)