This is an automated email from the ASF dual-hosted git repository. zhangyonglun 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 3201510 Add name for all poms (#7717) 3201510 is described below commit 3201510751bcd41a9c01cb191a9e73ad8cf5b579 Author: Liang Zhang <terrym...@163.com> AuthorDate: Fri Oct 9 13:03:17 2020 +0800 Add name for all poms (#7717) --- examples/example-core/pom.xml | 2 +- examples/pom.xml | 2 +- .../shardingsphere-jdbc-example/other-feature-example/pom.xml | 2 +- .../other-feature-example/shadow-example/pom.xml | 2 +- examples/shardingsphere-jdbc-example/pom.xml | 2 +- .../transaction-2pc-xa-spring-boot-example/pom.xml | 1 - .../transaction-2pc-xa-spring-namespace-example/pom.xml | 1 - .../transaction-base-seata-raw-jdbc-example/pom.xml | 3 +-- .../transaction-base-seata-spring-boot-example/pom.xml | 1 - examples/shardingsphere-proxy-example/pom.xml | 2 +- shardingsphere-features/pom.xml | 2 +- .../shardingsphere-consensus-replication/pom.xml | 2 +- .../shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml | 2 +- .../shardingsphere-primary-replica-replication-spring/pom.xml | 2 +- .../shardingsphere-shadow/shardingsphere-shadow-spring/pom.xml | 2 +- .../shardingsphere-sharding-spring/pom.xml | 2 +- shardingsphere-governance/pom.xml | 2 +- shardingsphere-governance/shardingsphere-governance-core/pom.xml | 2 +- .../shardingsphere-governance-repository/pom.xml | 2 +- .../shardingsphere-governance-repository-provider/pom.xml | 2 +- shardingsphere-infra/shardingsphere-infra-context/pom.xml | 1 + shardingsphere-integration-test/pom.xml | 2 +- .../shardingsphere-proxy-docker-build/pom.xml | 1 - .../shardingsphere-test-fixture/pom.xml | 2 +- shardingsphere-jdbc/pom.xml | 2 +- .../shardingsphere-jdbc-core-spring/pom.xml | 2 +- .../shardingsphere-jdbc-spring-infra/pom.xml | 2 +- shardingsphere-observability/shardingsphere-tracing/pom.xml | 2 +- .../shardingsphere-tracing-opentracing/pom.xml | 4 +++- shardingsphere-proxy/shardingsphere-proxy-frontend/pom.xml | 2 +- shardingsphere-rdl-parser/pom.xml | 8 ++++---- .../shardingsphere-rdl-parser-binder/pom.xml | 7 ++++--- shardingsphere-sql-parser/pom.xml | 2 +- shardingsphere-transaction/pom.xml | 2 +- shardingsphere-transaction/shardingsphere-transaction-2pc/pom.xml | 2 +- .../shardingsphere-transaction-base/pom.xml | 2 +- 36 files changed, 40 insertions(+), 41 deletions(-) diff --git a/examples/example-core/pom.xml b/examples/example-core/pom.xml index 26adb3d..8c4e420 100644 --- a/examples/example-core/pom.xml +++ b/examples/example-core/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>example-core</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>config-utility</module> diff --git a/examples/pom.xml b/examples/pom.xml index 4cc2a9d..de4b008 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -23,8 +23,8 @@ <groupId>org.apache.shardingsphere.example</groupId> <artifactId>shardingsphere-example</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>example-core</module> diff --git a/examples/shardingsphere-jdbc-example/other-feature-example/pom.xml b/examples/shardingsphere-jdbc-example/other-feature-example/pom.xml index 9013def..f48464d 100644 --- a/examples/shardingsphere-jdbc-example/other-feature-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/other-feature-example/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>other-feature-example</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>encrypt-example</module> diff --git a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/pom.xml b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/pom.xml index 794d9ff..69a0904 100644 --- a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shadow-example</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shadow-raw-jdbc-example</module> diff --git a/examples/shardingsphere-jdbc-example/pom.xml b/examples/shardingsphere-jdbc-example/pom.xml index 0cc2c0e..44ec4d2 100644 --- a/examples/shardingsphere-jdbc-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-jdbc-example</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>sharding-example</module> diff --git a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-boot-example/pom.xml b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-boot-example/pom.xml index 8417fc5..606385b 100644 --- a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-boot-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-boot-example/pom.xml @@ -25,7 +25,6 @@ <artifactId>transaction-example</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <artifactId>transaction-2pc-xa-spring-boot-example</artifactId> <name>Example::transaction::2pc-xa-spring-boot</name> diff --git a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-namespace-example/pom.xml b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-namespace-example/pom.xml index f68f1ba..a9b2394 100644 --- a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-namespace-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-spring-namespace-example/pom.xml @@ -25,7 +25,6 @@ <artifactId>transaction-example</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <artifactId>transaction-2pc-xa-spring-namespace-example</artifactId> <name>Example::transaction::2pc-xa-spring-namespace</name> diff --git a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml index c646578..02fac52 100644 --- a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml @@ -19,13 +19,12 @@ <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.example</groupId> <artifactId>transaction-example</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> - <artifactId>transaction-base-seata-raw-jdbc-example</artifactId> <name>Example::transaction::base-seata-raw-jdbc</name> diff --git a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-spring-boot-example/pom.xml b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-spring-boot-example/pom.xml index 5f387a5..7d80e21 100644 --- a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-spring-boot-example/pom.xml +++ b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-spring-boot-example/pom.xml @@ -25,7 +25,6 @@ <artifactId>transaction-example</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <artifactId>transaction-base-seata-spring-boot-example</artifactId> <name>Example::transaction::base-seata-spring-boot</name> diff --git a/examples/shardingsphere-proxy-example/pom.xml b/examples/shardingsphere-proxy-example/pom.xml index 7b496fb..32824eb 100644 --- a/examples/shardingsphere-proxy-example/pom.xml +++ b/examples/shardingsphere-proxy-example/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-proxy-example</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-proxy-boot-mybatis-example</module> diff --git a/shardingsphere-features/pom.xml b/shardingsphere-features/pom.xml index ff60577..4624c6c 100644 --- a/shardingsphere-features/pom.xml +++ b/shardingsphere-features/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-features</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-sharding</module> diff --git a/shardingsphere-features/shardingsphere-consensus-replication/pom.xml b/shardingsphere-features/shardingsphere-consensus-replication/pom.xml index 789abfd..05f55ef 100644 --- a/shardingsphere-features/shardingsphere-consensus-replication/pom.xml +++ b/shardingsphere-features/shardingsphere-consensus-replication/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-consensus-replication</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-consensus-replication-api</module> diff --git a/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml b/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml index 4342f5a..8c5975a 100644 --- a/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml +++ b/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-encrypt-spring</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-encrypt-spring-namespace</module> diff --git a/shardingsphere-features/shardingsphere-primary-replica-replication/shardingsphere-primary-replica-replication-spring/pom.xml b/shardingsphere-features/shardingsphere-primary-replica-replication/shardingsphere-primary-replica-replication-spring/pom.xml index febd4c2..4dacef2 100644 --- a/shardingsphere-features/shardingsphere-primary-replica-replication/shardingsphere-primary-replica-replication-spring/pom.xml +++ b/shardingsphere-features/shardingsphere-primary-replica-replication/shardingsphere-primary-replica-replication-spring/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-primary-replica-replication-spring</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-primary-replica-replication-spring-namespace</module> diff --git a/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-spring/pom.xml b/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-spring/pom.xml index e0feebd..fa03143 100644 --- a/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-spring/pom.xml +++ b/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-spring/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-shadow-spring</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-shadow-spring-namespace</module> diff --git a/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-spring/pom.xml b/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-spring/pom.xml index 8a442fa..6752182 100644 --- a/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-spring/pom.xml +++ b/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-spring/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-sharding-spring</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-sharding-spring-namespace</module> diff --git a/shardingsphere-governance/pom.xml b/shardingsphere-governance/pom.xml index a672b1f..f8171bb 100644 --- a/shardingsphere-governance/pom.xml +++ b/shardingsphere-governance/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-governance</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-governance-core</module> diff --git a/shardingsphere-governance/shardingsphere-governance-core/pom.xml b/shardingsphere-governance/shardingsphere-governance-core/pom.xml index 550b48a..a5ebdda 100644 --- a/shardingsphere-governance/shardingsphere-governance-core/pom.xml +++ b/shardingsphere-governance/shardingsphere-governance-core/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-governance-core</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-governance-core-common</module> diff --git a/shardingsphere-governance/shardingsphere-governance-repository/pom.xml b/shardingsphere-governance/shardingsphere-governance-repository/pom.xml index 4cdd700..80069ea 100644 --- a/shardingsphere-governance/shardingsphere-governance-repository/pom.xml +++ b/shardingsphere-governance/shardingsphere-governance-repository/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-governance-repository</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-governance-repository-api</module> diff --git a/shardingsphere-governance/shardingsphere-governance-repository/shardingsphere-governance-repository-provider/pom.xml b/shardingsphere-governance/shardingsphere-governance-repository/shardingsphere-governance-repository-provider/pom.xml index 727e1db..cab2dc1 100644 --- a/shardingsphere-governance/shardingsphere-governance-repository/shardingsphere-governance-repository-provider/pom.xml +++ b/shardingsphere-governance/shardingsphere-governance-repository/shardingsphere-governance-repository-provider/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-governance-repository-provider</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-governance-repository-zookeeper-curator</module> diff --git a/shardingsphere-infra/shardingsphere-infra-context/pom.xml b/shardingsphere-infra/shardingsphere-infra-context/pom.xml index 3e82cfa..444eb92 100644 --- a/shardingsphere-infra/shardingsphere-infra-context/pom.xml +++ b/shardingsphere-infra/shardingsphere-infra-context/pom.xml @@ -26,6 +26,7 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-infra-context</artifactId> + <name>${project.artifactId}</name> <dependencies> <dependency> diff --git a/shardingsphere-integration-test/pom.xml b/shardingsphere-integration-test/pom.xml index 8203b91..803ae37 100644 --- a/shardingsphere-integration-test/pom.xml +++ b/shardingsphere-integration-test/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-integration-test</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-test-fixture</module> diff --git a/shardingsphere-integration-test/shardingsphere-proxy-docker-build/pom.xml b/shardingsphere-integration-test/shardingsphere-proxy-docker-build/pom.xml index 1862132..c8b2cc7 100644 --- a/shardingsphere-integration-test/shardingsphere-proxy-docker-build/pom.xml +++ b/shardingsphere-integration-test/shardingsphere-proxy-docker-build/pom.xml @@ -25,7 +25,6 @@ <artifactId>shardingsphere-integration-test</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <artifactId>shardingsphere-proxy-docker-build</artifactId> <name>${project.artifactId}</name> diff --git a/shardingsphere-integration-test/shardingsphere-test-fixture/pom.xml b/shardingsphere-integration-test/shardingsphere-test-fixture/pom.xml index 2065b30..d9dd89a 100644 --- a/shardingsphere-integration-test/shardingsphere-test-fixture/pom.xml +++ b/shardingsphere-integration-test/shardingsphere-test-fixture/pom.xml @@ -25,8 +25,8 @@ <artifactId>shardingsphere-integration-test</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <artifactId>shardingsphere-test-fixture</artifactId> + <name>${project.artifactId}</name> <dependencies> <dependency> diff --git a/shardingsphere-jdbc/pom.xml b/shardingsphere-jdbc/pom.xml index 7257ce2..4bb5ebb 100644 --- a/shardingsphere-jdbc/pom.xml +++ b/shardingsphere-jdbc/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-jdbc</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-jdbc-core</module> diff --git a/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-core-spring/pom.xml b/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-core-spring/pom.xml index 1ccc923..1454317 100644 --- a/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-core-spring/pom.xml +++ b/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-core-spring/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-jdbc-core-spring</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-jdbc-core-spring-boot-starter</module> diff --git a/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/pom.xml b/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/pom.xml index 6056ebd..d75d38b 100644 --- a/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/pom.xml +++ b/shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-jdbc-spring-infra</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-jdbc-spring-boot-starter-infra</module> diff --git a/shardingsphere-observability/shardingsphere-tracing/pom.xml b/shardingsphere-observability/shardingsphere-tracing/pom.xml index b414a8e..0fbc67a 100644 --- a/shardingsphere-observability/shardingsphere-tracing/pom.xml +++ b/shardingsphere-observability/shardingsphere-tracing/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-tracing</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-tracing-opentracing</module> diff --git a/shardingsphere-observability/shardingsphere-tracing/shardingsphere-tracing-opentracing/pom.xml b/shardingsphere-observability/shardingsphere-tracing/shardingsphere-tracing-opentracing/pom.xml index 0e6695f..b509bae 100644 --- a/shardingsphere-observability/shardingsphere-tracing/shardingsphere-tracing-opentracing/pom.xml +++ b/shardingsphere-observability/shardingsphere-tracing/shardingsphere-tracing-opentracing/pom.xml @@ -16,7 +16,9 @@ ~ 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"> +<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> diff --git a/shardingsphere-proxy/shardingsphere-proxy-frontend/pom.xml b/shardingsphere-proxy/shardingsphere-proxy-frontend/pom.xml index 085943c..c4cd869 100644 --- a/shardingsphere-proxy/shardingsphere-proxy-frontend/pom.xml +++ b/shardingsphere-proxy/shardingsphere-proxy-frontend/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-proxy-frontend</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-proxy-frontend-spi</module> diff --git a/shardingsphere-rdl-parser/pom.xml b/shardingsphere-rdl-parser/pom.xml index 347fbc0..2c6265b 100644 --- a/shardingsphere-rdl-parser/pom.xml +++ b/shardingsphere-rdl-parser/pom.xml @@ -19,16 +19,16 @@ <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> - <artifactId>shardingsphere</artifactId> <groupId>org.apache.shardingsphere</groupId> + <artifactId>shardingsphere</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> <artifactId>shardingsphere-rdl-parser</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> - + <name>${project.artifactId}</name> + <modules> <module>shardingsphere-rdl-parser-sql</module> <module>shardingsphere-rdl-parser-statement</module> diff --git a/shardingsphere-rdl-parser/shardingsphere-rdl-parser-binder/pom.xml b/shardingsphere-rdl-parser/shardingsphere-rdl-parser-binder/pom.xml index db8f8a5..a8d9c77 100644 --- a/shardingsphere-rdl-parser/shardingsphere-rdl-parser-binder/pom.xml +++ b/shardingsphere-rdl-parser/shardingsphere-rdl-parser-binder/pom.xml @@ -19,14 +19,15 @@ <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> - <artifactId>shardingsphere-rdl-parser</artifactId> <groupId>org.apache.shardingsphere</groupId> + <artifactId>shardingsphere-rdl-parser</artifactId> <version>5.0.0-RC1-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> <artifactId>shardingsphere-rdl-parser-binder</artifactId> - + <name>${project.artifactId}</name> + <dependencies> <dependency> <groupId>org.apache.shardingsphere</groupId> diff --git a/shardingsphere-sql-parser/pom.xml b/shardingsphere-sql-parser/pom.xml index 8cf3f83..77b6d1e 100644 --- a/shardingsphere-sql-parser/pom.xml +++ b/shardingsphere-sql-parser/pom.xml @@ -26,8 +26,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-sql-parser</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-sql-parser-spi</module> diff --git a/shardingsphere-transaction/pom.xml b/shardingsphere-transaction/pom.xml index 84e8a67..7f722e0 100644 --- a/shardingsphere-transaction/pom.xml +++ b/shardingsphere-transaction/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-transaction</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-transaction-core</module> diff --git a/shardingsphere-transaction/shardingsphere-transaction-2pc/pom.xml b/shardingsphere-transaction/shardingsphere-transaction-2pc/pom.xml index 5dfe7ce..9e5e429 100644 --- a/shardingsphere-transaction/shardingsphere-transaction-2pc/pom.xml +++ b/shardingsphere-transaction/shardingsphere-transaction-2pc/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-transaction-2pc</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-transaction-xa</module> diff --git a/shardingsphere-transaction/shardingsphere-transaction-base/pom.xml b/shardingsphere-transaction/shardingsphere-transaction-base/pom.xml index 0db7451..75edd0b 100644 --- a/shardingsphere-transaction/shardingsphere-transaction-base/pom.xml +++ b/shardingsphere-transaction/shardingsphere-transaction-base/pom.xml @@ -24,8 +24,8 @@ <version>5.0.0-RC1-SNAPSHOT</version> </parent> <artifactId>shardingsphere-transaction-base</artifactId> - <name>${project.artifactId}</name> <packaging>pom</packaging> + <name>${project.artifactId}</name> <modules> <module>shardingsphere-transaction-base-seata-at</module>