This is an automated email from the ASF dual-hosted git repository. liubao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git
commit ad3bd675d2f305335cb4b4d65866205a5380eb43 Author: liubao <[email protected]> AuthorDate: Mon Jan 18 20:42:30 2021 +0800 fix missing artifact in pom --- clients/config-kie-client/pom.xml | 2 ++ coverage-reports/pom.xml | 8 ++++++-- dependencies/bom/pom.xml | 9 +++++++-- distribution/pom.xml | 8 ++++++-- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/clients/config-kie-client/pom.xml b/clients/config-kie-client/pom.xml index 84b2524..409d3f1 100644 --- a/clients/config-kie-client/pom.xml +++ b/clients/config-kie-client/pom.xml @@ -27,6 +27,8 @@ <modelVersion>4.0.0</modelVersion> <artifactId>config-kie-client</artifactId> + <name>ServiceComb::Clients::Kie Client</name> + <dependencies> <dependency> <groupId>org.apache.servicecomb</groupId> diff --git a/coverage-reports/pom.xml b/coverage-reports/pom.xml index 8e6affe..68be706 100644 --- a/coverage-reports/pom.xml +++ b/coverage-reports/pom.xml @@ -52,11 +52,15 @@ <!-- clients --> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>http-client-common</artifactId> + <artifactId>config-center-client</artifactId> </dependency> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>kie-client</artifactId> + <artifactId>config-kie-client</artifactId> + </dependency> + <dependency> + <groupId>org.apache.servicecomb</groupId> + <artifactId>http-client-common</artifactId> </dependency> <dependency> <groupId>org.apache.servicecomb</groupId> diff --git a/dependencies/bom/pom.xml b/dependencies/bom/pom.xml index 10098cc..38cfe9b 100644 --- a/dependencies/bom/pom.xml +++ b/dependencies/bom/pom.xml @@ -59,12 +59,17 @@ <!-- Service Comb : clients --> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>http-client-common</artifactId> + <artifactId>config-center-client</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicecomb</groupId> + <artifactId>config-kie-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>kie-client</artifactId> + <artifactId>http-client-common</artifactId> <version>${project.version}</version> </dependency> <dependency> diff --git a/distribution/pom.xml b/distribution/pom.xml index 71e82d3..8be6a48 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -50,11 +50,15 @@ <!-- clients --> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>http-client-common</artifactId> + <artifactId>config-center-client</artifactId> </dependency> <dependency> <groupId>org.apache.servicecomb</groupId> - <artifactId>kie-client</artifactId> + <artifactId>config-kie-client</artifactId> + </dependency> + <dependency> + <groupId>org.apache.servicecomb</groupId> + <artifactId>http-client-common</artifactId> </dependency> <dependency> <groupId>org.apache.servicecomb</groupId>
