Skip to content

Commit

Permalink
Update hibernate validator to 6.x.x
Browse files Browse the repository at this point in the history
  • Loading branch information
yyvess committed Feb 23, 2019
1 parent 32372a0 commit 1b531fa
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ You can find published releases on Maven Central.
<dependency>
<groupId>net.jmob</groupId>
<artifactId>guice.conf</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
Optionally, to active validation, you must import a validator like Hibernate validator

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
<version>5.2.2.Final</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
<version>6.0.15.Final</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.0</version>
</dependency>

Link for direct download if you don't use a dependency manager:

Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.jmob</groupId>
<artifactId>guice.conf</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
<packaging>jar</packaging>

<name>Guice Configuration</name>
Expand Down Expand Up @@ -35,7 +35,7 @@
<junit.version>4.12</junit.version>
<typesafe.version>1.3.3</typesafe.version>
<logback.version>1.2.3</logback.version>
<validation-api.versoin>1.1.0.Final</validation-api.versoin>
<validation-api.versoin>2.0.1.Final</validation-api.versoin>
<mockito.version>2.19.0</mockito.version>
<project.scm.id>github</project.scm.id>
</properties>
Expand Down Expand Up @@ -80,15 +80,15 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
<version>5.2.2.Final</version>
<version>6.0.15.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>2.2.4</version>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 1b531fa

Please sign in to comment.