Skip to content
Snippets Groups Projects
Commit 1741e850 authored by Mic's avatar Mic
Browse files

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
parent 94109017
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<hibernate.version>4.1.11.Final</hibernate.version> <hibernate.version>4.1.11.Final</hibernate.version>
<!-- Bean validation --> <!-- Bean validation -->
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version> <hibernate-validator.version>5.0.0.Final</hibernate-validator.version>
<!-- Database access --> <!-- Database access -->
<commons-dbcp.version>1.4</commons-dbcp.version> <commons-dbcp.version>1.4</commons-dbcp.version>
...@@ -223,12 +223,6 @@ ...@@ -223,12 +223,6 @@
<artifactId>jstl-impl</artifactId> <artifactId>jstl-impl</artifactId>
<version>${jstl.version}</version> <version>${jstl.version}</version>
</dependency> </dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${javax-el.version}</version>
<scope>provided</scope>
</dependency>
<!-- MySQL JDBC Connector --> <!-- MySQL JDBC Connector -->
<!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> --> <!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> -->
...@@ -253,6 +247,16 @@ ...@@ -253,6 +247,16 @@
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId> <artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version> <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>
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
...@@ -481,4 +485,4 @@ ...@@ -481,4 +485,4 @@
</pluginManagement> </pluginManagement>
</build> </build>
</project> </project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment