This is an automated email from the ASF dual-hosted git repository.

wujimin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
     new 72caa21  [SCB-1222] change groupId of "hibernate-validator" from 
"org.hibernate" to "org.hibernate.validator" to avoid dependency warning
72caa21 is described below

commit 72caa21b50dbcce3af075d3fb97cd1a76c298490
Author: wujimin <wuji...@huawei.com>
AuthorDate: Tue Mar 26 15:06:41 2019 +0800

    [SCB-1222] change groupId of "hibernate-validator" from "org.hibernate" to 
"org.hibernate.validator" to avoid dependency warning
---
 .../src/main/resources/archetype-resources/pom.xml             |  1 -
 .../springmvc-tests-general-with-springboot/pom.xml            |  2 +-
 .../springmvc-tests-simplified-mapping-with-springboot/pom.xml |  2 +-
 java-chassis-dependencies/default/pom.xml                      | 10 ++++++++++
 .../spring-boot2-starter-standalone/pom.xml                    |  2 +-
 samples/bmi/pom.xml                                            |  2 +-
 samples/metrics-extend-healthcheck/pom.xml                     |  2 +-
 swagger/swagger-invocation/invocation-validator/pom.xml        |  2 +-
 8 files changed, 16 insertions(+), 7 deletions(-)

diff --git 
a/archetypes/business-service-spring-boot-starter/src/main/resources/archetype-resources/pom.xml
 
b/archetypes/business-service-spring-boot-starter/src/main/resources/archetype-resources/pom.xml
index 4277791..35959f8 100644
--- 
a/archetypes/business-service-spring-boot-starter/src/main/resources/archetype-resources/pom.xml
+++ 
b/archetypes/business-service-spring-boot-starter/src/main/resources/archetype-resources/pom.xml
@@ -54,7 +54,6 @@
     <dependency>
       <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
-      <version>6.0.2.Final</version>
     </dependency>
   </dependencies>
 
diff --git 
a/integration-tests/springmvc-tests/springmvc-tests-general-with-springboot/pom.xml
 
b/integration-tests/springmvc-tests/springmvc-tests-general-with-springboot/pom.xml
index d12ec8c..b0706a4 100644
--- 
a/integration-tests/springmvc-tests/springmvc-tests-general-with-springboot/pom.xml
+++ 
b/integration-tests/springmvc-tests/springmvc-tests-general-with-springboot/pom.xml
@@ -49,7 +49,7 @@
       <artifactId>spring-test</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
   </dependencies>
diff --git 
a/integration-tests/springmvc-tests/springmvc-tests-simplified-mapping-with-springboot/pom.xml
 
b/integration-tests/springmvc-tests/springmvc-tests-simplified-mapping-with-springboot/pom.xml
index 90f6ca5..f184657 100644
--- 
a/integration-tests/springmvc-tests/springmvc-tests-simplified-mapping-with-springboot/pom.xml
+++ 
b/integration-tests/springmvc-tests/springmvc-tests-simplified-mapping-with-springboot/pom.xml
@@ -49,7 +49,7 @@
       <artifactId>spring-test</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
   </dependencies>
diff --git a/java-chassis-dependencies/default/pom.xml 
b/java-chassis-dependencies/default/pom.xml
index 8e13090..b2c5e05 100644
--- a/java-chassis-dependencies/default/pom.xml
+++ b/java-chassis-dependencies/default/pom.xml
@@ -194,6 +194,11 @@
         <artifactId>hibernate-validator</artifactId>
         <version>6.0.2.Final</version>
       </dependency>
+      <dependency>
+        <groupId>org.hibernate.validator</groupId>
+        <artifactId>hibernate-validator</artifactId>
+        <version>6.0.2.Final</version>
+      </dependency>
 
       <dependency>
         <groupId>org.aspectj</groupId>
@@ -345,6 +350,11 @@
         <version>6.0.2.Final</version>
       </dependency>
       <dependency>
+        <groupId>org.hibernate.validator</groupId>
+        <artifactId>hibernate-validator-annotation-processor</artifactId>
+        <version>6.0.2.Final</version>
+      </dependency>
+      <dependency>
         <groupId>javax.transaction</groupId>
         <artifactId>javax.transaction-api</artifactId>
         <version>1.2</version>
diff --git 
a/java-chassis-spring-boot/spring-boot2-starter-parent/spring-boot2-starter-standalone/pom.xml
 
b/java-chassis-spring-boot/spring-boot2-starter-parent/spring-boot2-starter-standalone/pom.xml
index 637cb76..d1d9ea7 100644
--- 
a/java-chassis-spring-boot/spring-boot2-starter-parent/spring-boot2-starter-standalone/pom.xml
+++ 
b/java-chassis-spring-boot/spring-boot2-starter-parent/spring-boot2-starter-standalone/pom.xml
@@ -41,7 +41,7 @@
 
     <!--ConditionEvaluationReportLoggingListener need in autoconfigure-->
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
 
diff --git a/samples/bmi/pom.xml b/samples/bmi/pom.xml
index 954a4bd..f3de7db 100644
--- a/samples/bmi/pom.xml
+++ b/samples/bmi/pom.xml
@@ -60,7 +60,7 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
   </dependencies>
diff --git a/samples/metrics-extend-healthcheck/pom.xml 
b/samples/metrics-extend-healthcheck/pom.xml
index 0d2a066..952f2d3 100644
--- a/samples/metrics-extend-healthcheck/pom.xml
+++ b/samples/metrics-extend-healthcheck/pom.xml
@@ -41,7 +41,7 @@
     </dependency>
 
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
 
diff --git a/swagger/swagger-invocation/invocation-validator/pom.xml 
b/swagger/swagger-invocation/invocation-validator/pom.xml
index 76e34c4..84c3bcd 100644
--- a/swagger/swagger-invocation/invocation-validator/pom.xml
+++ b/swagger/swagger-invocation/invocation-validator/pom.xml
@@ -31,7 +31,7 @@
       <artifactId>swagger-invocation-core</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.hibernate</groupId>
+      <groupId>org.hibernate.validator</groupId>
       <artifactId>hibernate-validator</artifactId>
     </dependency>
     <dependency>

Reply via email to