This is an automated email from the ASF dual-hosted git repository.
deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/master by this push:
new b4fe6a1 CXF-8301: added spring-boot-starter-validation as per
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.3-Release-Notes#validation-starter-no-longer-included-in-web-starters
b4fe6a1 is described below
commit b4fe6a1f375df372a15603073fdb3f5a68e73383
Author: Dennis Kieselhorst <[email protected]>
AuthorDate: Wed Jul 22 20:17:24 2020 +0200
CXF-8301: added spring-boot-starter-validation as per
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.3-Release-Notes#validation-starter-no-longer-included-in-web-starters
---
integration/spring-boot/starter-jaxrs/pom.xml | 4 ++++
integration/spring-boot/starter-jaxws/pom.xml | 4 ++++
parent/pom.xml | 5 +++++
3 files changed, 13 insertions(+)
diff --git a/integration/spring-boot/starter-jaxrs/pom.xml
b/integration/spring-boot/starter-jaxrs/pom.xml
index f617e36..6b2b30f 100644
--- a/integration/spring-boot/starter-jaxrs/pom.xml
+++ b/integration/spring-boot/starter-jaxrs/pom.xml
@@ -78,5 +78,9 @@
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ </dependency>
</dependencies>
</project>
diff --git a/integration/spring-boot/starter-jaxws/pom.xml
b/integration/spring-boot/starter-jaxws/pom.xml
index 1f8a145..143e2a8 100644
--- a/integration/spring-boot/starter-jaxws/pom.xml
+++ b/integration/spring-boot/starter-jaxws/pom.xml
@@ -73,5 +73,9 @@
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ </dependency>
</dependencies>
</project>
diff --git a/parent/pom.xml b/parent/pom.xml
index 0099bcf..3cb79ab 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1362,6 +1362,11 @@
<version>${cxf.spring.boot.version}</version>
</dependency>
<dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ <version>${cxf.spring.boot.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${cxf.spring.security.version}</version>