Skip to content

Commit 5dc690c

Browse files
committed
[maven-release-plugin] prepare release 5.0.0-alpha
1 parent 9d3f7e4 commit 5dc690c

File tree

134 files changed

+200
-328
lines changed
  • shardingsphere-db-protocol
  • shardingsphere-distribution
  • shardingsphere-distsql-parser
  • shardingsphere-features
    • shardingsphere-encrypt
    • shardingsphere-replica-query
      • shardingsphere-replica-query-api
      • shardingsphere-replica-query-common
      • shardingsphere-replica-query-route
      • shardingsphere-replica-query-spring
        • shardingsphere-replica-query-spring-boot-starter
        • shardingsphere-replica-query-spring-namespace
    • shardingsphere-shadow
    • shardingsphere-sharding
      • shardingsphere-sharding-api
      • shardingsphere-sharding-common
      • shardingsphere-sharding-merge
      • shardingsphere-sharding-rewrite
      • shardingsphere-sharding-route
      • shardingsphere-sharding-spring
  • shardingsphere-governance
    • shardingsphere-governance-core
      • shardingsphere-governance-core-common
      • shardingsphere-governance-core-config
      • shardingsphere-governance-core-context
      • shardingsphere-governance-core-facade
      • shardingsphere-governance-core-registry
    • shardingsphere-governance-repository
      • shardingsphere-governance-repository-api
      • shardingsphere-governance-repository-provider
        • shardingsphere-governance-repository-apollo
        • shardingsphere-governance-repository-etcd
        • shardingsphere-governance-repository-nacos
        • shardingsphere-governance-repository-zookeeper-curator
  • shardingsphere-infra
  • shardingsphere-integration-test
  • shardingsphere-jdbc
    • shardingsphere-jdbc-core
    • shardingsphere-jdbc-governance
    • shardingsphere-jdbc-spring
      • shardingsphere-jdbc-core-spring
        • shardingsphere-jdbc-core-spring-boot-starter
        • shardingsphere-jdbc-core-spring-namespace
      • shardingsphere-jdbc-governance-spring
        • shardingsphere-jdbc-governance-spring-boot-starter
        • shardingsphere-jdbc-governance-spring-namespace
      • shardingsphere-jdbc-spring-infra
        • shardingsphere-jdbc-spring-boot-starter-infra
        • shardingsphere-jdbc-spring-namespace-infra
      • shardingsphere-jdbc-transaction-spring
  • shardingsphere-observability
  • shardingsphere-proxy
    • shardingsphere-proxy-backend
    • shardingsphere-proxy-bootstrap
    • shardingsphere-proxy-common
    • shardingsphere-proxy-frontend
      • shardingsphere-proxy-frontend-core
      • shardingsphere-proxy-frontend-mysql
      • shardingsphere-proxy-frontend-postgresql
      • shardingsphere-proxy-frontend-spi
  • shardingsphere-scaling
  • shardingsphere-sql-parser
    • shardingsphere-sql-parser-dialect
    • shardingsphere-sql-parser-engine
    • shardingsphere-sql-parser-spi
    • shardingsphere-sql-parser-statement
    • shardingsphere-sql-parser-test
  • shardingsphere-test
  • shardingsphere-transaction
    • shardingsphere-transaction-2pc
      • shardingsphere-transaction-xa
        • shardingsphere-transaction-xa-atomikos
        • shardingsphere-transaction-xa-bitronix
        • shardingsphere-transaction-xa-core
        • shardingsphere-transaction-xa-narayana
        • shardingsphere-transaction-xa-spi
    • shardingsphere-transaction-base
    • shardingsphere-transaction-core

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+200
-328
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</parent>
2626
<groupId>org.apache.shardingsphere</groupId>
2727
<artifactId>shardingsphere</artifactId>
28-
<version>5.0.0-RC1-SNAPSHOT</version>
28+
<version>5.0.0-alpha</version>
2929
<packaging>pom</packaging>
3030
<name>${project.artifactId}</name>
3131

@@ -949,7 +949,7 @@
949949
<connection>scm:git:https://github.com/apache/shardingsphere.git</connection>
950950
<developerConnection>scm:git:https://github.com/apache/shardingsphere.git</developerConnection>
951951
<url>https://github.com/apache/shardingsphere.git</url>
952-
<tag>HEAD</tag>
952+
<tag>5.0.0-alpha</tag>
953953
</scm>
954954

955955
<mailingLists>

shardingsphere-db-protocol/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-db-protocol</artifactId>
2927
<packaging>pom</packaging>

shardingsphere-db-protocol/shardingsphere-db-protocol-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-db-protocol</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-db-protocol-core</artifactId>
2727
<name>${project.artifactId}</name>

shardingsphere-db-protocol/shardingsphere-db-protocol-mysql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-db-protocol</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-db-protocol-mysql</artifactId>
2727
<name>${project.artifactId}</name>

shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-db-protocol</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-db-protocol-postgresql</artifactId>
2727
<name>${project.artifactId}</name>

shardingsphere-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-distribution</artifactId>
2727
<packaging>pom</packaging>

shardingsphere-distribution/shardingsphere-jdbc-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-distribution</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-jdbc-distribution</artifactId>
2727
<packaging>pom</packaging>

shardingsphere-distribution/shardingsphere-proxy-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-distribution</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-proxy-distribution</artifactId>
2727
<packaging>pom</packaging>

shardingsphere-distribution/shardingsphere-scaling-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-distribution</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-scaling-distribution</artifactId>
2727
<packaging>pom</packaging>

shardingsphere-distribution/shardingsphere-src-distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.shardingsphere</groupId>
2323
<artifactId>shardingsphere-distribution</artifactId>
24-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2525
</parent>
2626
<artifactId>shardingsphere-src-distribution</artifactId>
2727
<packaging>pom</packaging>

shardingsphere-distsql-parser/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-distsql-parser</artifactId>
2927
<packaging>pom</packaging>

shardingsphere-distsql-parser/shardingsphere-distsql-parser-engine/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<parent>
2321
<artifactId>shardingsphere-distsql-parser</artifactId>
2422
<groupId>org.apache.shardingsphere</groupId>
25-
<version>5.0.0-RC1-SNAPSHOT</version>
23+
<version>5.0.0-alpha</version>
2624
</parent>
2725
<modelVersion>4.0.0</modelVersion>
2826
<artifactId>shardingsphere-distsql-parser-engine</artifactId>

shardingsphere-distsql-parser/shardingsphere-distsql-parser-statement/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-distsql-parser</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-distsql-parser-statement</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-features</artifactId>
2927
<packaging>pom</packaging>

shardingsphere-features/shardingsphere-encrypt/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-features</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-api/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-api</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-common/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-common</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-merge/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-merge</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-rewrite</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-spring</artifactId>
2927
<packaging>pom</packaging>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-boot-starter/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt-spring</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-spring-boot-starter</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-namespace/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-encrypt-spring</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-encrypt-spring-namespace</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-replica-query/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-features</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-replica-query</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-replica-query/shardingsphere-replica-query-api/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-replica-query</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-replica-query-api</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-replica-query/shardingsphere-replica-query-common/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-replica-query</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-replica-query-common</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-replica-query/shardingsphere-replica-query-route/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-replica-query</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-replica-query-route</artifactId>
2927
<name>${project.artifactId}</name>

shardingsphere-features/shardingsphere-replica-query/shardingsphere-replica-query-spring/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<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">
2220
<modelVersion>4.0.0</modelVersion>
2321
<parent>
2422
<groupId>org.apache.shardingsphere</groupId>
2523
<artifactId>shardingsphere-replica-query</artifactId>
26-
<version>5.0.0-RC1-SNAPSHOT</version>
24+
<version>5.0.0-alpha</version>
2725
</parent>
2826
<artifactId>shardingsphere-replica-query-spring</artifactId>
2927
<packaging>pom</packaging>

0 commit comments

Comments
 (0)