Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
2ac6c107
Commit
2ac6c107
authored
Sep 19, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9969 from rajadilipkolli:patch-3
* pr/9969: Upgrade to Hibernate Validator 6.0.2.Final
parents
ac9c2c0b
a4a0eef1
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
27 additions
and
12 deletions
+27
-12
pom.xml
spring-boot-actuator-autoconfigure/pom.xml
+1
-1
pom.xml
spring-boot-actuator/pom.xml
+1
-1
pom.xml
spring-boot-autoconfigure/pom.xml
+7
-1
pom.xml
spring-boot-dependencies/pom.xml
+2
-2
pom.xml
spring-boot-docs/pom.xml
+1
-1
pom.xml
spring-boot-starters/pom.xml
+1
-0
pom.xml
spring-boot-starters/spring-boot-starter-jersey/pom.xml
+8
-0
pom.xml
spring-boot-starters/spring-boot-starter-validation/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-web/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-webflux/pom.xml
+1
-1
pom.xml
spring-boot-test-autoconfigure/pom.xml
+1
-1
pom.xml
spring-boot-tools/spring-boot-test-support/pom.xml
+1
-1
pom.xml
spring-boot/pom.xml
+1
-1
No files found.
spring-boot-actuator-autoconfigure/pom.xml
View file @
2ac6c107
...
...
@@ -209,7 +209,7 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
spring-boot-actuator/pom.xml
View file @
2ac6c107
...
...
@@ -97,7 +97,7 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
spring-boot-autoconfigure/pom.xml
View file @
2ac6c107
...
...
@@ -149,6 +149,12 @@
<groupId>
org.glassfish.jersey.ext
</groupId>
<artifactId>
jersey-spring4
</artifactId>
<optional>
true
</optional>
<exclusions>
<exclusion>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.glassfish.jersey.media
</groupId>
...
...
@@ -300,7 +306,7 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
spring-boot-dependencies/pom.xml
View file @
2ac6c107
...
...
@@ -85,7 +85,7 @@
<hazelcast.version>
3.8.5
</hazelcast.version>
<hazelcast-hibernate5.version>
1.2.2
</hazelcast-hibernate5.version>
<hibernate.version>
5.2.11.Final
</hibernate.version>
<hibernate-validator.version>
5.4.1
.Final
</hibernate-validator.version>
<hibernate-validator.version>
6.0.2
.Final
</hibernate-validator.version>
<hikaricp.version>
2.7.1
</hikaricp.version>
<hsqldb.version>
2.4.0
</hsqldb.version>
<htmlunit.version>
2.27
</htmlunit.version>
...
...
@@ -1847,7 +1847,7 @@
<version>
${hibernate.version}
</version>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<version>
${hibernate-validator.version}
</version>
</dependency>
...
...
spring-boot-docs/pom.xml
View file @
2ac6c107
...
...
@@ -503,7 +503,7 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
spring-boot-starters/pom.xml
View file @
2ac6c107
...
...
@@ -93,6 +93,7 @@
<bannedDependencies>
<excludes>
<exclude>
commons-logging:*:*
</exclude>
<exclude>
org.hibernate:hibernate-validator:*
</exclude>
</excludes>
<searchTransitive>
true
</searchTransitive>
</bannedDependencies>
...
...
spring-boot-starters/spring-boot-starter-jersey/pom.xml
View file @
2ac6c107
...
...
@@ -79,6 +79,10 @@
<groupId>
org.glassfish.hk2.external
</groupId>
<artifactId>
javax.inject
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
...
...
@@ -93,6 +97,10 @@
<groupId>
org.glassfish.hk2.external
</groupId>
<artifactId>
javax.inject
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
...
...
spring-boot-starters/spring-boot-starter-validation/pom.xml
View file @
2ac6c107
...
...
@@ -28,7 +28,7 @@
<artifactId>
tomcat-embed-el
</artifactId>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</dependency>
</dependencies>
...
...
spring-boot-starters/spring-boot-starter-web/pom.xml
View file @
2ac6c107
...
...
@@ -32,7 +32,7 @@
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</dependency>
<dependency>
...
...
spring-boot-starters/spring-boot-starter-webflux/pom.xml
View file @
2ac6c107
...
...
@@ -32,7 +32,7 @@
<artifactId>
spring-boot-starter-reactor-netty
</artifactId>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
</dependency>
<dependency>
...
...
spring-boot-test-autoconfigure/pom.xml
View file @
2ac6c107
...
...
@@ -234,7 +234,7 @@
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<scope>
test
</scope>
</dependency>
...
...
spring-boot-tools/spring-boot-test-support/pom.xml
View file @
2ac6c107
...
...
@@ -101,7 +101,7 @@
</dependency>
<!-- Test -->
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<scope>
test
</scope>
</dependency>
...
...
spring-boot/pom.xml
View file @
2ac6c107
...
...
@@ -185,7 +185,7 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<groupId>
org.hibernate
.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment