Skip to content

Commit 8803d66

Browse files
committed
for apache#788 rename maven group id
1 parent d64fa6c commit 8803d66

File tree

20 files changed

+47
-47
lines changed

20 files changed

+47
-47
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Use sidecar to connect databases, best for Kubernetes or Mesos together.
8585
```xml
8686
<!-- import sharding-jdbc core -->
8787
<dependency>
88-
<groupId>io.shardingjdbc</groupId>
88+
<groupId>io.shardingsphere</groupId>
8989
<artifactId>sharding-jdbc-core</artifactId>
9090
<version>${latest.release.version}</version>
9191
</dependency>

README_ZH.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Sharding-JDBC是一个开源的分布式数据库中间件解决方案。它在J
8787
```xml
8888
<!-- 引入sharding-jdbc核心模块 -->
8989
<dependency>
90-
<groupId>io.shardingjdbc</groupId>
90+
<groupId>io.shardingsphere</groupId>
9191
<artifactId>sharding-jdbc-core</artifactId>
9292
<version>${latest.release.version}</version>
9393
</dependency>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
3-
<groupId>io.shardingjdbc</groupId>
4-
<artifactId>sharding-jdbc</artifactId>
3+
<groupId>io.shardingsphere</groupId>
4+
<artifactId>sharding-sphere</artifactId>
55
<version>2.1.0-SNAPSHOT</version>
66
<packaging>pom</packaging>
77
<name>${project.artifactId}</name>

sharding-core/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>io.shardingjdbc</groupId>
8-
<artifactId>sharding-jdbc</artifactId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-core</artifactId>
@@ -34,7 +34,7 @@
3434
</dependency>
3535

3636
<dependency>
37-
<groupId>io.shardingjdbc</groupId>
37+
<groupId>io.shardingsphere</groupId>
3838
<artifactId>sharding-sql-test</artifactId>
3939
<version>${project.version}</version>
4040
<scope>test</scope>

sharding-jdbc-core-spring/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>io.shardingjdbc</groupId>
8-
<artifactId>sharding-jdbc</artifactId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-core-spring</artifactId>
@@ -18,7 +18,7 @@
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>io.shardingjdbc</groupId>
21+
<groupId>io.shardingsphere</groupId>
2222
<artifactId>sharding-jdbc-core</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
@@ -59,8 +59,8 @@
5959
<dependencyManagement>
6060
<dependencies>
6161
<dependency>
62-
<groupId>io.shardingjdbc</groupId>
63-
<artifactId>sharding-jdbc</artifactId>
62+
<groupId>io.shardingsphere</groupId>
63+
<artifactId>sharding-sphere</artifactId>
6464
<version>${project.parent.version}</version>
6565
<type>pom</type>
6666
<scope>import</scope>

sharding-jdbc-core-spring/sharding-jdbc-core-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-core-spring</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>

sharding-jdbc-core-spring/sharding-jdbc-core-spring-namespace/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-core-spring</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>

sharding-jdbc-core/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>io.shardingjdbc</groupId>
6-
<artifactId>sharding-jdbc</artifactId>
5+
<groupId>io.shardingsphere</groupId>
6+
<artifactId>sharding-sphere</artifactId>
77
<version>2.1.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>sharding-jdbc-core</artifactId>
1010
<name>${project.artifactId}</name>
1111
<dependencies>
1212
<dependency>
13-
<groupId>io.shardingjdbc</groupId>
13+
<groupId>io.shardingsphere</groupId>
1414
<artifactId>sharding-core</artifactId>
1515
<version>${project.version}</version>
1616
</dependency>
@@ -38,7 +38,7 @@
3838
</dependency>
3939

4040
<dependency>
41-
<groupId>io.shardingjdbc</groupId>
41+
<groupId>io.shardingsphere</groupId>
4242
<artifactId>sharding-sql-test</artifactId>
4343
<version>${project.version}</version>
4444
<scope>test</scope>

sharding-jdbc-orchestration-spring/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>io.shardingjdbc</groupId>
8-
<artifactId>sharding-jdbc</artifactId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
@@ -18,7 +18,7 @@
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>io.shardingjdbc</groupId>
21+
<groupId>io.shardingsphere</groupId>
2222
<artifactId>sharding-jdbc-orchestration</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
@@ -63,8 +63,8 @@
6363
<dependencyManagement>
6464
<dependencies>
6565
<dependency>
66-
<groupId>io.shardingjdbc</groupId>
67-
<artifactId>sharding-jdbc</artifactId>
66+
<groupId>io.shardingsphere</groupId>
67+
<artifactId>sharding-sphere</artifactId>
6868
<version>${project.parent.version}</version>
6969
<type>pom</type>
7070
<scope>import</scope>

sharding-jdbc-orchestration-spring/sharding-jdbc-orchestration-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>

sharding-jdbc-orchestration-spring/sharding-jdbc-orchestration-spring-namespace/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>

sharding-jdbc-orchestration/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<groupId>io.shardingjdbc</groupId>
7-
<artifactId>sharding-jdbc</artifactId>
6+
<groupId>io.shardingsphere</groupId>
7+
<artifactId>sharding-sphere</artifactId>
88
<version>2.1.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
@@ -17,7 +17,7 @@
1717

1818
<dependencies>
1919
<dependency>
20-
<groupId>io.shardingjdbc</groupId>
20+
<groupId>io.shardingsphere</groupId>
2121
<artifactId>sharding-jdbc-core</artifactId>
2222
<version>${sharding-jdbc.version}</version>
2323
</dependency>

sharding-jdbc-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>io.shardingjdbc</groupId>
6+
<groupId>io.shardingsphere</groupId>
77
<artifactId>sharding-jdbc-plugin</artifactId>
88
<version>2.1.0-SNAPSHOT</version>
99
<packaging>pom</packaging>
@@ -21,7 +21,7 @@
2121

2222
<dependencies>
2323
<dependency>
24-
<groupId>io.shardingjdbc</groupId>
24+
<groupId>io.shardingsphere</groupId>
2525
<artifactId>sharding-jdbc-core</artifactId>
2626
<version>${sharding-jdbc.version}</version>
2727
</dependency>

sharding-jdbc-transaction-parent/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>io.shardingjdbc</groupId>
8-
<artifactId>sharding-jdbc</artifactId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-jdbc-transaction-parent</artifactId>
@@ -66,7 +66,7 @@
6666
<dependencyManagement>
6767
<dependencies>
6868
<dependency>
69-
<groupId>io.shardingjdbc</groupId>
69+
<groupId>io.shardingsphere</groupId>
7070
<artifactId>sharding-jdbc-core</artifactId>
7171
<version>${project.parent.version}</version>
7272
</dependency>

sharding-jdbc-transaction-parent/sharding-jdbc-transaction-async-job/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-transaction-parent</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>
@@ -15,7 +15,7 @@
1515
<version>${quartz.version}</version>
1616
</dependency>
1717
<dependency>
18-
<groupId>io.shardingjdbc</groupId>
18+
<groupId>io.shardingsphere</groupId>
1919
<artifactId>sharding-jdbc-transaction-storage</artifactId>
2020
<version>${project.parent.version}</version>
2121
</dependency>

sharding-jdbc-transaction-parent/sharding-jdbc-transaction-storage/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-transaction-parent</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>

sharding-jdbc-transaction-parent/sharding-jdbc-transaction/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>io.shardingjdbc</groupId>
4+
<groupId>io.shardingsphere</groupId>
55
<artifactId>sharding-jdbc-transaction-parent</artifactId>
66
<version>2.1.0-SNAPSHOT</version>
77
</parent>
@@ -10,11 +10,11 @@
1010

1111
<dependencies>
1212
<dependency>
13-
<groupId>io.shardingjdbc</groupId>
13+
<groupId>io.shardingsphere</groupId>
1414
<artifactId>sharding-jdbc-core</artifactId>
1515
</dependency>
1616
<dependency>
17-
<groupId>io.shardingjdbc</groupId>
17+
<groupId>io.shardingsphere</groupId>
1818
<artifactId>sharding-jdbc-transaction-storage</artifactId>
1919
<version>${project.parent.version}</version>
2020
</dependency>

sharding-opentracing/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>io.shardingjdbc</groupId>
8-
<artifactId>sharding-jdbc</artifactId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-opentracing</artifactId>
1212
<name>${project.artifactId}</name>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>io.shardingjdbc</groupId>
16+
<groupId>io.shardingsphere</groupId>
1717
<artifactId>sharding-jdbc-core</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>

sharding-proxy/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<artifactId>sharding-jdbc</artifactId>
8-
<groupId>io.shardingjdbc</groupId>
7+
<groupId>io.shardingsphere</groupId>
8+
<artifactId>sharding-sphere</artifactId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-proxy</artifactId>
@@ -17,7 +17,7 @@
1717

1818
<dependencies>
1919
<dependency>
20-
<groupId>io.shardingjdbc</groupId>
20+
<groupId>io.shardingsphere</groupId>
2121
<artifactId>sharding-jdbc-orchestration</artifactId>
2222
<version>${sharding-jdbc.version}</version>
2323
</dependency>

sharding-sql-test/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<artifactId>sharding-jdbc</artifactId>
8-
<groupId>io.shardingjdbc</groupId>
7+
<artifactId>sharding-sphere</artifactId>
8+
<groupId>io.shardingsphere</groupId>
99
<version>2.1.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>sharding-sql-test</artifactId>

0 commit comments

Comments
 (0)