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 2020/12/30 03:49:02 UTC

[shardingsphere] branch master updated: #7318, move mgr inside provider (#8821)

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 35000e2  #7318, move mgr inside provider (#8821)
35000e2 is described below

commit 35000e2df4d55c57bc9a013044e249ab5a121a05
Author: Zhang Yonglun <zh...@apache.org>
AuthorDate: Wed Dec 30 11:45:36 2020 +0800

    #7318, move mgr inside provider (#8821)
    
    * #7318, move mgr inside provider
    
    * #7318, move mgr inside provider
---
 shardingsphere-features/shardingsphere-ha/pom.xml              |  2 +-
 .../shardingsphere-ha/{ => shardingsphere-ha-provider}/pom.xml | 10 +++-------
 .../shardingsphere-ha-mgr/pom.xml                              |  0
 .../main/java/org/apache/shardingsphere/ha/mgr/MGRHAType.java  |  0
 .../org/apache/shardingsphere/ha/mgr/MGRPeriodicalJob.java     |  0
 5 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/shardingsphere-features/shardingsphere-ha/pom.xml b/shardingsphere-features/shardingsphere-ha/pom.xml
index af9fb36..d118049 100644
--- a/shardingsphere-features/shardingsphere-ha/pom.xml
+++ b/shardingsphere-features/shardingsphere-ha/pom.xml
@@ -32,7 +32,7 @@
     <modules>
         <module>shardingsphere-ha-api</module>
         <module>shardingsphere-ha-common</module>
-        <module>shardingsphere-ha-mgr</module>
+        <module>shardingsphere-ha-provider</module>
         <module>shardingsphere-ha-route</module>
         <module>shardingsphere-ha-spring</module>
     </modules>
diff --git a/shardingsphere-features/shardingsphere-ha/pom.xml b/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/pom.xml
similarity index 82%
copy from shardingsphere-features/shardingsphere-ha/pom.xml
copy to shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/pom.xml
index af9fb36..8854633 100644
--- a/shardingsphere-features/shardingsphere-ha/pom.xml
+++ b/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/pom.xml
@@ -22,18 +22,14 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.shardingsphere</groupId>
-        <artifactId>shardingsphere-features</artifactId>
+        <artifactId>shardingsphere-ha</artifactId>
         <version>5.0.0-RC1-SNAPSHOT</version>
     </parent>
-    <artifactId>shardingsphere-ha</artifactId>
-    <name>${project.artifactId}</name>
+    <artifactId>shardingsphere-ha-provider</artifactId>
     <packaging>pom</packaging>
+    <name>${project.artifactId}</name>
     
     <modules>
-        <module>shardingsphere-ha-api</module>
-        <module>shardingsphere-ha-common</module>
         <module>shardingsphere-ha-mgr</module>
-        <module>shardingsphere-ha-route</module>
-        <module>shardingsphere-ha-spring</module>
     </modules>
 </project>
diff --git a/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/pom.xml b/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/pom.xml
similarity index 100%
rename from shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/pom.xml
rename to shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/pom.xml
diff --git a/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRHAType.java b/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRHAType.java
similarity index 100%
rename from shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRHAType.java
rename to shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRHAType.java
diff --git a/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRPeriodicalJob.java b/shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRPeriodicalJob.java
similarity index 100%
rename from shardingsphere-features/shardingsphere-ha/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRPeriodicalJob.java
rename to shardingsphere-features/shardingsphere-ha/shardingsphere-ha-provider/shardingsphere-ha-mgr/src/main/java/org/apache/shardingsphere/ha/mgr/MGRPeriodicalJob.java