提交 fbd0a7d1 编写于 作者: T tuohai666

[maven-release-plugin] prepare release v4.0.0-RC1

上级 fd534c11
此差异已折叠。
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-api</artifactId>
......
......@@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-common</artifactId>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-core-parser</artifactId>
<name>${project.artifactId}</name>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-parser-common</artifactId>
<name>${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-mysql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-postgresql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-oracle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-sqlserver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<classifier>indy</classifier>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sql-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java7</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
</dependencies>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-parser-common</artifactId>
<name>${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-mysql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-postgresql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-oracle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser-sqlserver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<classifier>indy</classifier>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sql-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java7</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-parser-mysql</artifactId>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-core-parser-oracle</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-core-parser-postgresql</artifactId>
<name>${project.artifactId}</name>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<parent>
<artifactId>sharding-core-parser</artifactId>
<groupId>org.apache.shardingsphere</groupId>
<version>4.0.0-RC1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-parser-spi</artifactId>
<name>${project.artifactId}</name>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<parent>
<artifactId>sharding-core-parser</artifactId>
<groupId>org.apache.shardingsphere</groupId>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-parser-spi</artifactId>
<name>${project.artifactId}</name>
</project>
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core-parser</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-core-parser-sqlserver</artifactId>
<name>${project.artifactId}</name>
......
......@@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-core</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sharding-core-rest</artifactId>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-orchestration</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-opentracing</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-orchestration</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-orchestration</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration-reg</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-orchestration-reg</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration-reg-api</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-orchestration-reg</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration-reg-etcd</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-orchestration-reg</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-orchestration-reg-zookeeper-curator</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy</artifactId>
<packaging>pom</packaging>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-backend</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-bootstrap</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-common</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-frontend</artifactId>
<packaging>pom</packaging>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-frontend</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-frontend-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-frontend</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-frontend-mysql</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-frontend</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-frontend-postgresql</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-frontend</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-frontend-spi</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-transport</artifactId>
<packaging>pom</packaging>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-transport</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-transport-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-transport</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-transport-mysql</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-proxy-transport</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-proxy-transport-postgresql</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-spring</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-orchestration-spring-boot-starter</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-orchestration-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-orchestration-spring-namespace</artifactId>
<name>${project.artifactId}</name>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
</parent>
<artifactId>sharding-jdbc-spring</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>sharding-jdbc-spring-boot-starter</module>
<module>sharding-jdbc-spring-namespace</module>
</modules>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java7</artifactId>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-spring</artifactId>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-spring</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>sharding-jdbc-spring-boot-starter</module>
<module>sharding-jdbc-spring-namespace</module>
</modules>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java7</artifactId>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
</dependencies>
</project>
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-jdbc-spring-namespace</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-spring-boot-starter</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-spring</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-spring</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-sql-test</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-sphere</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-2pc</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction-2pc</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-xa</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction-xa</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-xa-core</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction-xa</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-xa-spi</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-base</artifactId>
<name>${project.artifactId}</name>
......
......@@ -21,7 +21,7 @@
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-transaction</artifactId>
<version>4.0.0-RC1-SNAPSHOT</version>
<version>4.0.0-RC1</version>
</parent>
<artifactId>sharding-transaction-core</artifactId>
<name>${project.artifactId}</name>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册