Skip to content

Instantly share code, notes, and snippets.

@l-gu
Created January 21, 2014 14:25
Show Gist options
  • Save l-gu/8541031 to your computer and use it in GitHub Desktop.
Save l-gu/8541031 to your computer and use it in GitHub Desktop.
Maven dependencies for Bean Validation 1.1
<dependencies>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</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>5.0.2.Final</version> <!-- Hibernate Reference implementation for Bean Validation 1.1 -->
</dependency>
<!-- Expression Language -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>com.sun.el</groupId>
<artifactId>el-ri</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment