Skip to content

Commit 58379e7

Browse files
author
Dave Syer
committed
Add hibernate-validator to spring-boot-starter-web
Fixes gh-616
1 parent bfbb720 commit 58379e7

File tree

3 files changed

+4
-8
lines changed
  • spring-boot-samples
  • spring-boot-starters/spring-boot-starter-web

3 files changed

+4
-8
lines changed

spring-boot-samples/spring-boot-sample-actuator/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
<groupId>org.springframework.boot</groupId>
4040
<artifactId>spring-boot-starter-remote-shell</artifactId>
4141
</dependency>
42-
<dependency>
43-
<groupId>org.hibernate</groupId>
44-
<artifactId>hibernate-validator</artifactId>
45-
</dependency>
4642
<dependency>
4743
<groupId>com.h2database</groupId>
4844
<artifactId>h2</artifactId>

spring-boot-samples/spring-boot-sample-web-ui/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
<groupId>org.springframework.boot</groupId>
2424
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2525
</dependency>
26-
<dependency>
27-
<groupId>org.hibernate</groupId>
28-
<artifactId>hibernate-validator</artifactId>
29-
</dependency>
3026
<dependency>
3127
<groupId>org.springframework.boot</groupId>
3228
<artifactId>spring-boot-starter-test</artifactId>

spring-boot-starters/spring-boot-starter-web/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
<groupId>com.fasterxml.jackson.core</groupId>
3131
<artifactId>jackson-databind</artifactId>
3232
</dependency>
33+
<dependency>
34+
<groupId>org.hibernate</groupId>
35+
<artifactId>hibernate-validator</artifactId>
36+
</dependency>
3337
<dependency>
3438
<groupId>org.springframework</groupId>
3539
<artifactId>spring-web</artifactId>

0 commit comments

Comments
 (0)