Downloads
Hibernate Validator releases are consumable in 2 different formats:
Distribution bundle
Distribution bundles are hosted on SourceForge File Release System. They come as both ZIP and TGZ archives. They contain jars, documentation, source code, etc.
There you also find the distribution bundles for the Bean Validation TCK.
Maven repository artifacts
Hibernate Validator is built using Maven and publishes as part of the release process the project artifacts to the JBoss Maven Repository. You can browse the available Validator releases here.
To include the latest release of Validator into your Maven project add the following dependency:
Latest production release
<p><dependency><br /> <groupId>org.hibernate</groupId><br /> <artifactId>hibernate-validator</artifactId><br /> <version>4.3.0.Final</version><br /> </dependency></p>
Latest development release
<p><dependency><br /> <groupId>org.hibernate</groupId><br /> <artifactId>hibernate-validator</artifactId><br /> <version>5.0.0-SNAPSHOTl</version><br /> </dependency></p>