Skip to content

Commit

Permalink
Upgrade to Hibernate Validator 5.0.2
Browse files Browse the repository at this point in the history
Update Hibernate Validator dependency to 5.0.2 and also include
Tomcat Jasper dependency. Jasper is required as it provides the
default ExpressionFactory implementation class
(org.apache.el.ExpressionFactoryImpl) which is indirectly
instantiated by Hibernate Validator.

Fixes spring-projectsgh-173
  • Loading branch information
Phillip Webb committed Jan 21, 2014
1 parent 618bfc6 commit 377953b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion spring-boot-dependencies/pom.xml
Expand Up @@ -18,7 +18,7 @@
<hamcrest.version>1.3</hamcrest.version>
<hibernate-entitymanager.version>4.3.0.Final</hibernate-entitymanager.version>
<hibernate-jpa-api.version>1.0.1.Final</hibernate-jpa-api.version>
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version>
<hibernate-validator.version>5.0.2.Final</hibernate-validator.version>
<httpclient.version>4.3.2</httpclient.version>
<httpasyncclient.version>4.0</httpasyncclient.version>
<hsqldb.version>2.3.1</hsqldb.version>
Expand Down
4 changes: 4 additions & 0 deletions spring-boot-starters/spring-boot-starter-tomcat/pom.xml
Expand Up @@ -17,6 +17,10 @@
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions spring-boot/pom.xml
Expand Up @@ -54,6 +54,11 @@
<artifactId>tomcat-embed-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
Expand Down

0 comments on commit 377953b

Please sign in to comment.