mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 04:15:50 +00:00
migrated to Hibernate-Validator 5.0.0.Final and solved EL issue
See here for more details about EL issue: https://hibernate.atlassian.net/browse/HV-790
This commit is contained in:
parent
94109017de
commit
1741e85044
1 changed files with 12 additions and 8 deletions
18
pom.xml
18
pom.xml
|
@ -31,7 +31,7 @@
|
|||
<hibernate.version>4.1.11.Final</hibernate.version>
|
||||
|
||||
<!-- Bean validation -->
|
||||
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version>
|
||||
<hibernate-validator.version>5.0.0.Final</hibernate-validator.version>
|
||||
|
||||
<!-- Database access -->
|
||||
<commons-dbcp.version>1.4</commons-dbcp.version>
|
||||
|
@ -223,12 +223,6 @@
|
|||
<artifactId>jstl-impl</artifactId>
|
||||
<version>${jstl.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.el</groupId>
|
||||
<artifactId>el-api</artifactId>
|
||||
<version>${javax-el.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- MySQL JDBC Connector -->
|
||||
<!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> -->
|
||||
|
@ -253,6 +247,16 @@
|
|||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-validator</artifactId>
|
||||
<version>${hibernate-validator.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.glassfish.web</groupId>
|
||||
<artifactId>javax.el</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>javax.el</groupId>
|
||||
<artifactId>javax.el-api</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
|
|
Loading…
Reference in a new issue