Search
Hibernate Validator

Hibernate Validator

Relational Persistence for Java and .NET

Hibernate Validator

Hibernate Validator releases are consumable in 2 different formats:

Distribution bundle

Distribution bundles are hosted on the SourceForge File Release System and come as ZIP or TGZ archive. They contain jars, documentation, source code, et al.

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
<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-validator</artifactId>
    <version>5.0.1.Final</version>
 </dependency>
	

Latest development release
<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-validator</artifactId>
    <version>5.1.0-SNAPSHOT</version>
</dependency>
	

Bean Validation 1.1 TCK

Distribution bundle

Distribution bundles are hosted on the SourceForge File Release System and come as ZIP or TGZ archive. They contain jars, documentation, source code, et al.

Maven repository artifacts

The Bean Validation 1.1 TCK is built using Maven and publishes project artifacts to the JBoss Maven Repository. You can browse the available TCK releases here.

The latest version used to test JSR 349 is:

<dependency>
    <groupId>org.hibernate.beanvalidation.tck</groupId>
    <artifactId>beanvalidation-tck-tests</artifactId>
    <version>1.1.1.Final</version>
</dependency>
	

* if you are looking for the Bean Validation 1.0 (JSR 303) TCK please refer to this wiki article.