You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by me...@apache.org on 2022/01/20 04:20:33 UTC

[shardingsphere] branch master updated: Adjust modules import sequence (#14937)

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

menghaoran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new f133e6d  Adjust modules import sequence (#14937)
f133e6d is described below

commit f133e6d480a105f315c4ac610704805aa034f4c5
Author: Liang Zhang <te...@163.com>
AuthorDate: Thu Jan 20 12:19:30 2022 +0800

    Adjust modules import sequence (#14937)
---
 examples/shardingsphere-sample/pom.xml | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)

diff --git a/examples/shardingsphere-sample/pom.xml b/examples/shardingsphere-sample/pom.xml
index d39dce2..bb97b6f 100644
--- a/examples/shardingsphere-sample/pom.xml
+++ b/examples/shardingsphere-sample/pom.xml
@@ -33,26 +33,30 @@
         <module>shardingsphere-example-generator</module>
         
         <module>shardingsphere-jdbc-memory-local-example</module>
-        <module>shardingsphere-proxy-cluster-etcd-base-seata-example</module>
-        <module>shardingsphere-proxy-cluster-etcd-local-example</module>
-        <module>shardingsphere-proxy-cluster-etcd-xa-atomikos-example</module>
-        <module>shardingsphere-proxy-cluster-etcd-xa-bitronix-example</module>
-        <module>shardingsphere-proxy-cluster-etcd-xa-narayana-example</module>
-        <module>shardingsphere-proxy-cluster-zookeeper-base-seata-example</module>
-        <module>shardingsphere-proxy-cluster-zookeeper-local-example</module>
-        <module>shardingsphere-proxy-cluster-zookeeper-xa-atomikos-example</module>
-        <module>shardingsphere-proxy-cluster-zookeeper-xa-bitronix-example</module>
-        <module>shardingsphere-proxy-cluster-zookeeper-xa-narayana-example</module>
-        <module>shardingsphere-proxy-memory-base-seata-example</module>
+        
         <module>shardingsphere-proxy-memory-local-example</module>
         <module>shardingsphere-proxy-memory-xa-atomikos-example</module>
         <module>shardingsphere-proxy-memory-xa-bitronix-example</module>
         <module>shardingsphere-proxy-memory-xa-narayana-example</module>
-        <module>shardingsphere-proxy-standalone-file-base-seata-example</module>
+        <module>shardingsphere-proxy-memory-base-seata-example</module>
+        
         <module>shardingsphere-proxy-standalone-file-local-example</module>
         <module>shardingsphere-proxy-standalone-file-xa-atomikos-example</module>
         <module>shardingsphere-proxy-standalone-file-xa-bitronix-example</module>
         <module>shardingsphere-proxy-standalone-file-xa-narayana-example</module>
+        <module>shardingsphere-proxy-standalone-file-base-seata-example</module>
+        
+        <module>shardingsphere-proxy-cluster-zookeeper-local-example</module>
+        <module>shardingsphere-proxy-cluster-zookeeper-xa-atomikos-example</module>
+        <module>shardingsphere-proxy-cluster-zookeeper-xa-bitronix-example</module>
+        <module>shardingsphere-proxy-cluster-zookeeper-xa-narayana-example</module>
+        <module>shardingsphere-proxy-cluster-zookeeper-base-seata-example</module>
+        
+        <module>shardingsphere-proxy-cluster-etcd-local-example</module>
+        <module>shardingsphere-proxy-cluster-etcd-xa-atomikos-example</module>
+        <module>shardingsphere-proxy-cluster-etcd-xa-bitronix-example</module>
+        <module>shardingsphere-proxy-cluster-etcd-xa-narayana-example</module>
+        <module>shardingsphere-proxy-cluster-etcd-base-seata-example</module>
     </modules>
     
     <build>