This is an automated email from the ASF dual-hosted git repository.
zhangliang 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 654eacd050b Remove useless dependencies declarations for infra pom
(#31949)
654eacd050b is described below
commit 654eacd050b5818bf793bea58a519ea05b73123f
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Jul 1 23:30:34 2024 +0800
Remove useless dependencies declarations for infra pom (#31949)
* Remove useless dependencies declarations for infra pom
* Remove useless dependencies declarations for infra pom
* Remove useless dependencies declarations for infra pom
* Remove useless dependencies declarations for infra pom
---
infra/binder/pom.xml | 5 -----
infra/common/pom.xml | 9 +++++----
infra/data-source-pool/core/pom.xml | 8 ++++----
infra/data-source-pool/type/hikari/pom.xml | 10 +++++-----
infra/executor/pom.xml | 5 -----
infra/util/pom.xml | 14 +++++++-------
6 files changed, 21 insertions(+), 30 deletions(-)
diff --git a/infra/binder/pom.xml b/infra/binder/pom.xml
index 53890f0bc6b..4d2240c9701 100644
--- a/infra/binder/pom.xml
+++ b/infra/binder/pom.xml
@@ -37,11 +37,6 @@
<artifactId>shardingsphere-infra-parser</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
- <groupId>org.apache.shardingsphere</groupId>
- <artifactId>shardingsphere-infra-common</artifactId>
- <version>${project.version}</version>
- </dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
diff --git a/infra/common/pom.xml b/infra/common/pom.xml
index 5d22f597767..e4c6561a122 100644
--- a/infra/common/pom.xml
+++ b/infra/common/pom.xml
@@ -107,10 +107,6 @@
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.awaitility</groupId>
- <artifactId>awaitility</artifactId>
- </dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
@@ -119,6 +115,11 @@
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>org.awaitility</groupId>
+ <artifactId>awaitility</artifactId>
+ </dependency>
</dependencies>
<build>
diff --git a/infra/data-source-pool/core/pom.xml
b/infra/data-source-pool/core/pom.xml
index b760674879d..6dc91c14542 100644
--- a/infra/data-source-pool/core/pom.xml
+++ b/infra/data-source-pool/core/pom.xml
@@ -46,13 +46,13 @@
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.awaitility</groupId>
- <artifactId>awaitility</artifactId>
- </dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.awaitility</groupId>
+ <artifactId>awaitility</artifactId>
+ </dependency>
</dependencies>
</project>
diff --git a/infra/data-source-pool/type/hikari/pom.xml
b/infra/data-source-pool/type/hikari/pom.xml
index 77cd2c95c74..1807cc69364 100644
--- a/infra/data-source-pool/type/hikari/pom.xml
+++ b/infra/data-source-pool/type/hikari/pom.xml
@@ -33,11 +33,6 @@
<version>${project.version}</version>
</dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- </dependency>
-
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-test-fixture-database</artifactId>
@@ -50,5 +45,10 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+
+ <dependency>
+ <groupId>com.zaxxer</groupId>
+ <artifactId>HikariCP</artifactId>
+ </dependency>
</dependencies>
</project>
diff --git a/infra/executor/pom.xml b/infra/executor/pom.xml
index 22894e6c8d2..04e260b2468 100644
--- a/infra/executor/pom.xml
+++ b/infra/executor/pom.xml
@@ -27,11 +27,6 @@
<name>${project.artifactId}</name>
<dependencies>
- <dependency>
- <groupId>org.apache.shardingsphere</groupId>
- <artifactId>shardingsphere-infra-common</artifactId>
- <version>${project.version}</version>
- </dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-infra-rewrite</artifactId>
diff --git a/infra/util/pom.xml b/infra/util/pom.xml
index 8ab9610527c..e52fe6f71ac 100644
--- a/infra/util/pom.xml
+++ b/infra/util/pom.xml
@@ -33,6 +33,13 @@
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.shardingsphere</groupId>
+ <artifactId>shardingsphere-test-util</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
@@ -49,12 +56,5 @@
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
</dependency>
-
- <dependency>
- <groupId>org.apache.shardingsphere</groupId>
- <artifactId>shardingsphere-test-util</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
</dependencies>
</project>