Skip to content

Instantly share code, notes, and snippets.

@l-gu
Created January 21, 2014 14:26
Show Gist options
  • Save l-gu/8541041 to your computer and use it in GitHub Desktop.
Save l-gu/8541041 to your computer and use it in GitHub Desktop.
Maven dependencies for Bean Validation 1.0
<dependencies>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.3.1.Final</version> <!-- Hibernate Last Bean Validation 1.0 compatible version -->
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment